Annotation of coherent/b/lib/libc/stdio/setbuf.c, revision 1.1.1.1

1.1       root        1: /*
                      2:  * libc/stdio/setbuf.c
                      3:  * ANSI-compliant C standard i/o library.
                      4:  * setbuf()
                      5:  * ANSI 4.9.5.5.
                      6:  * Set i/o buffer.
                      7:  */
                      8: 
                      9: #include <stdio.h>
                     10: 
                     11: void
                     12: setbuf(stream, buf) FILE *stream; char *buf;
                     13: {
                     14:        setvbuf(stream, buf, (buf == NULL) ? _IONBF : _IOFBF, BUFSIZ);
                     15: }
                     16: 
                     17: /* end of libc/stdio/setbuf.c */

unix.superglobalmegacorp.com

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