diff options
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); +} |