mirror of
https://github.com/QingdaoU/JudgeServer.git
synced 2024-12-28 21:31:43 +00: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);
|
||
|
}
|