aboutsummaryrefslogtreecommitdiffstats
path: root/missing/system.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2010-07-16 12:04:45 +0300
committerArnold D. Robbins <arnold@skeeve.com>2010-07-16 12:04:45 +0300
commitdbd583bd2b8a6dd40c622875a4e197360cb5aba7 (patch)
treed9fb7b6595cb44fefb4e32d70af9ac6d057af14a /missing/system.c
parentb8c608200919aa3f7b3fef289a7bece2d2961412 (diff)
downloadegawk-dbd583bd2b8a6dd40c622875a4e197360cb5aba7.tar.gz
egawk-dbd583bd2b8a6dd40c622875a4e197360cb5aba7.tar.bz2
egawk-dbd583bd2b8a6dd40c622875a4e197360cb5aba7.zip
Move to 2.13.3 (from 2.13.tar.gz - sigh).
Diffstat (limited to 'missing/system.c')
-rw-r--r--missing/system.c7
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;
+}