diff options
author | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-14 21:28:19 +0200 |
---|---|---|
committer | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-14 21:28:19 +0200 |
commit | 1087d4df2a7342d2832ba3bab1843bf4a3040775 (patch) | |
tree | 96cd6ea198cc542f29c0660d5e5f7083af84d711 /src/trycpp.c |
Diffstat (limited to 'src/trycpp.c')
-rw-r--r-- | src/trycpp.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/trycpp.c b/src/trycpp.c new file mode 100644 index 0000000..e4503d4 --- /dev/null +++ b/src/trycpp.c @@ -0,0 +1,9 @@ +/* Public domain. */ + +int main() +{ +#ifdef NeXT + printf("nextstep\n"); exit(0); +#endif + printf("unknown\n"); exit(0); +} |