diff options
Diffstat (limited to 'missing/system.c')
-rw-r--r-- | missing/system.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/missing/system.c b/missing/system.c new file mode 100644 index 00000000..bceca9e9 --- /dev/null +++ b/missing/system.c @@ -0,0 +1,7 @@ +int +system(s) +char *s; +{ + fatal("system() not supported on this system"); + return 0; +} |