6599da043e
From-SVN: r14877
10 lines
131 B
C
10 lines
131 B
C
#include "libioP.h"
|
|
#include "stdio.h"
|
|
|
|
void
|
|
setbuf (fp, buf)
|
|
FILE *fp; char *buf;
|
|
{
|
|
_IO_setbuffer(fp, buf, _IO_BUFSIZ);
|
|
}
|