home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer) / NeXT_Developer-3.3.iso / NextDeveloper / Source / GNU / libg++ / libio / stdio / setbuf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-15  |  131 b   |  10 lines

  1. #include "libioP.h"
  2. #include "stdio.h"
  3.  
  4. void
  5. setbuf (fp, buf)
  6.      FILE *fp;  char *buf;
  7. {
  8.   _IO_setbuffer(fp, buf, _IO_BUFSIZ);
  9. }
  10.