Browse Source

missed another global data marking

Peter S. Mazinger 18 years ago
parent
commit
39d1c1774d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libc/stdio/_stdio.c

+ 1 - 1
libc/stdio/_stdio.c

@@ -127,7 +127,7 @@ static FILE _stdio_streams[] = {
 
 /* psm: moved to _stdio.h: libc_hidden_proto(stdin/stdout) */
 FILE *stdin  = _stdio_streams;
-libc_hidden_def(stdin)
+libc_hidden_data_def(stdin)
 FILE *stdout = _stdio_streams + 1;
 libc_hidden_data_def(stdout)
 libc_hidden_proto(stderr)