setbuf.c - scc - simple c99 compiler
 (HTM) git clone git://git.simple-cc.org/scc
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
       setbuf.c (142B)
       ---
            1 #include <stdio.h>
            2 
            3 #undef setbuf
            4 
            5 void
            6 setbuf(FILE *restrict fp, char *restrict buf)
            7 {
            8         setvbuf(fp, buf, (buf) ? _IOFBF : _IONBF, BUFSIZ);
            9 }