mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-08 13:27:25 +08:00
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);
|
|
}
|