/* setbuf.c (emx+gcc) -- Copyright (c) 1990-1993 by Eberhard Mattes */

#include <stdio.h>

int setbuf (FILE *stream, char *buffer)
{
  return (setvbuf (stream, buffer,
                   (buffer != NULL ? _IOFBF : _IONBF),
                   BUFSIZ));
}
