00001 /* 00002 * setbuf.c - control buffering of a stream 00003 */ 00004 /* $Header: /opt/proj/minix/cvsroot/src/lib/stdio/setbuf.c,v 1.1.1.1 2005/04/21 14:56:36 beng Exp $ */ 00005 00006 #include <stdio.h> 00007 #include "loc_incl.h" 00008 00009 void 00010 setbuf(register FILE *stream, char *buf) 00011 { 00012 (void) setvbuf(stream, buf, (buf ? _IOFBF : _IONBF), (size_t) BUFSIZ); 00013 }
1.4.6