make-it-quick/config/check_setlinebuf.c

8 lines
76 B
C

#include <stdio.h>
int main()
{
FILE *f = stdout;
setlinebuf(f);
}