tenfourfox/xpcom/tests/TestQuickReturn.cpp

9 lines
106 B
C++
Raw Normal View History

2017-04-19 07:56:45 +00:00
#include <stdio.h>
int main (int argc, char* argv[]) {
if (argc != 1)
return -1;
return 42;
}