setlbf.c 101 B

123456
  1. #include <stdio.h>
  2. static void __attribute__((constructor)) setlbf(void)
  3. {
  4. setbuf(stdout, NULL);
  5. }