mirror of
https://github.com/QingdaoU/JudgeServer.git
synced 2025-11-04 14:50:01 +08:00
8 lines
124 B
C
8 lines
124 B
C
#include <stdio.h>
|
|
|
|
void unbuffer() __attribute__((constructor));
|
|
|
|
void unbuffer()
|
|
{
|
|
setvbuf(stdout, NULL, _IONBF, 0);
|
|
} |