1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-05-26 23:13:55 +00:00
Files
UXP/xpcom/tests/TestQuickReturn.cpp
T

9 lines
106 B
C++

#include <stdio.h>
int main (int argc, char* argv[]) {
if (argc != 1)
return -1;
return 42;
}