ack/lang/cem/libcc.ansi/stdio/setbuf.c

14 lines
231 B
C
Raw Normal View History

1989-05-30 13:34:25 +00:00
/*
* setbuf.c - control buffering of a stream
*/
/* $Header$ */
#include <stdio.h>
#include "loc_incl.h"
void
setbuf(register FILE *stream, char *buf)
{
1989-06-26 10:37:05 +00:00
(void) setvbuf(stream, buf, (buf ? _IOFBF : _IONBF), (size_t) BUFSIZ);
1989-05-30 13:34:25 +00:00
}