mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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;
|
|
}
|