amiga-libnix3/extra/setlinebuf.c

5 lines
91 B
C

#include <stdio.h>
int setlinebuf(FILE *stream)
{ return setvbuf(stream,NULL,_IOLBF,0); }