]> Git Repo - uclibc-ng.git/commitdiff
Fix stdin/stdout/stderr for now.
authorManuel Novoa III <[email protected]>
Thu, 15 Feb 2001 16:18:12 +0000 (16:18 -0000)
committerManuel Novoa III <[email protected]>
Thu, 15 Feb 2001 16:18:12 +0000 (16:18 -0000)
libc/stdio/stdio.c

index 27b54dcb3e20d4c793076913552d76e3cdb16ecf..e274b9018ee9e1aee81a5d449b22de620bfb6b3d 100644 (file)
@@ -96,6 +96,10 @@ FILE _stdio_streams[3] = {
         2, _IONBF | __MODE_WRITE | __MODE_IOTRAN}
 };
 
+FILE *_stdin = _stdio_streams + 0;
+FILE *_stdout = _stdio_streams + 1;
+FILE *_stderr = _stdio_streams + 2;
+
 /*
  * Note: the following forces linking of the __init_stdio function if
  * any of the stdio functions are used (except perror) since they all
This page took 0.029378 seconds and 4 git commands to generate.