gecko/xpcom/tests/TestBlockingProcess.cpp

10 lines
104 B
C++

#include <stdio.h>
int main()
{
char text[20];
fgets(text, sizeof text, stdin);
return 0;
}