mirror of
https://github.com/gtxaspec/wz_mini_hacks.git
synced 2024-11-09 23:18:20 +00:00
6 lines
126 B
C
6 lines
126 B
C
#include <stdio.h>
|
|
|
|
static void __attribute ((constructor)) setStdoutLineBuffer(void) {
|
|
setvbuf(stdout, NULL, _IOLBF, 0);
|
|
}
|