mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
9 lines
106 B
C++
9 lines
106 B
C++
#include <stdio.h>
|
|
|
|
int main (int argc, char* argv[]) {
|
|
if (argc != 1)
|
|
return -1;
|
|
|
|
return 42;
|
|
}
|