Annotation of coherent/d/lib/libc/stdio/_fp.c, revision 1.1.1.1

1.1       root        1: /*
                      2:  * Standard I/O Library Internals
                      3:  * File structures
                      4:  * (note stderr default unbuffered)
                      5:  */
                      6: 
                      7: #include <stdio.h>
                      8: 
                      9: extern int     _fginit(),
                     10:                _fpinit();
                     11: FILE   *_fp[_NFILE] = { &_stdin, &_stdout, &_stderr };
                     12: FILE   _stdin  = { NULL, NULL, NULL, 0, &_fginit, &_fpinit, _FINUSE, 0, 0 };
                     13: FILE   _stdout = { NULL, NULL, NULL, 0, &_fginit, &_fpinit, _FINUSE, 1, 0 };
                     14: FILE   _stderr = { NULL, NULL, NULL, 0, &_fginit, &_fpinit, _FINUSE|_FSTBUF, 2, 0 };

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.