JudgeServer/server/unbuffer.c
2018-12-12 15:17:37 +08:00

8 lines
124 B
C

#include <stdio.h>
void unbuffer() __attribute__((constructor));
void unbuffer()
{
setvbuf(stdout, NULL, _IONBF, 0);
}