mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02: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);
|
|
}
|