setlinebuf.c 96 B

1234567
  1. #define _GNU_SOURCE
  2. #include <stdio.h>
  3. void setlinebuf(FILE *f)
  4. {
  5. setvbuf(f, 0, _IOLBF, 0);
  6. }