aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2013-12-12 20:45:59 +0200
committerArnold D. Robbins <arnold@skeeve.com>2013-12-12 20:45:59 +0200
commit9953f4cee02f2781ee5da2e42bcb837c1a849cb0 (patch)
treeb322336208f51473e694287d8efe0891c4b10c8a /main.c
parent70778853494d7ec00a77d42617fdd030c74c9bec (diff)
downloadegawk-9953f4cee02f2781ee5da2e42bcb837c1a849cb0.tar.gz
egawk-9953f4cee02f2781ee5da2e42bcb837c1a849cb0.tar.bz2
egawk-9953f4cee02f2781ee5da2e42bcb837c1a849cb0.zip
First round of VMS changes.
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/main.c b/main.c
index e0bc1954..a47b025e 100644
--- a/main.c
+++ b/main.c
@@ -194,6 +194,10 @@ static const struct option optab[] = {
{ NULL, 0, NULL, '\0' }
};
+/* VMS needs some special fix-ups for the program name */
+#ifdef __VMS
+#include "vms_gawk_main_wrapper.c"
+#endif
/* main --- process args, parse program, run it, clean up */