JudgeServer/server/unbuffer.c

8 lines
124 B
C
Raw Permalink Normal View History

2018-12-12 06:38:29 +00:00
#include <stdio.h>
void unbuffer() __attribute__((constructor));
void unbuffer()
{
setvbuf(stdout, NULL, _IONBF, 0);
}