mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-14 18:51:28 +00:00
6f45c666bc
# ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D14595 --HG-- extra : moz-landing-system : lando
8 lines
99 B
C++
8 lines
99 B
C++
#include <stdio.h>
|
|
|
|
int main(int argc, char* argv[]) {
|
|
if (argc != 1) return -1;
|
|
|
|
return 42;
|
|
}
|