aboutsummaryrefslogtreecommitdiff
path: root/libio/stdio/setbuf.c
blob: 5002e3d0733b55949c61819d1431a26d216c09be (plain)
1
2
3
4
5
6
7
8
9
#include "libioP.h"
#include "stdio.h"

void
setbuf (fp, buf)
     FILE *fp;  char *buf;
{
  _IO_setbuffer(fp, buf, _IO_BUFSIZ);
}