diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-12-12 20:45:59 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-12-12 20:45:59 +0200 |
commit | 9953f4cee02f2781ee5da2e42bcb837c1a849cb0 (patch) | |
tree | b322336208f51473e694287d8efe0891c4b10c8a /main.c | |
parent | 70778853494d7ec00a77d42617fdd030c74c9bec (diff) | |
download | egawk-9953f4cee02f2781ee5da2e42bcb837c1a849cb0.tar.gz egawk-9953f4cee02f2781ee5da2e42bcb837c1a849cb0.tar.bz2 egawk-9953f4cee02f2781ee5da2e42bcb837c1a849cb0.zip |
First round of VMS changes.
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 */ |