/* setbuf --- set buffering on a stream */

int setbuf (stream, buf)
FILE *stream;
char *buf;
{
        /*
         * null function, since not possible under primos.
         * implement as an actual function, on the off chance that
         * someone tries to take its address, or do something
         * wierd like that.
         */
}
