gcc/libio/stdio/setbuf.c

10 lines
131 B
C
Raw Normal View History

1997-08-22 00:57:35 +02:00
#include "libioP.h"
#include "stdio.h"
void
setbuf (fp, buf)
FILE *fp; char *buf;
{
_IO_setbuffer(fp, buf, _IO_BUFSIZ);
}