gecko/xpcom/tests/TestBlockingProcess.cpp

10 lines
104 B
C++
Raw Normal View History

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