diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-11-21 10:53:34 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-11-21 10:53:34 +0200 |
commit | a398513aadb70b98e6e0ad04e5821ea0b6eca00c (patch) | |
tree | c857f8f573292e590f496df5c2b5caec5ac232ae /main.c | |
parent | d00161ea2a57bcc45a34a35fed0d46c0e3b2de99 (diff) | |
download | egawk-a398513aadb70b98e6e0ad04e5821ea0b6eca00c.tar.gz egawk-a398513aadb70b98e6e0ad04e5821ea0b6eca00c.tar.bz2 egawk-a398513aadb70b98e6e0ad04e5821ea0b6eca00c.zip |
Remove OLDMEM checks, preparatory to merging.
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -170,8 +170,6 @@ GETGROUPS_T *groupset; /* current group set */ int ngroups; /* size of said set */ #endif -bool do_old_mem = false; /* XXX temporary */ - void (*lintfunc)(const char *mesg, ...) = r_warning; /* Sorted by long option name! */ @@ -233,9 +231,6 @@ main(int argc, char **argv) #endif /* HAVE_MTRACE */ #endif /* HAVE_MCHECK_H */ - if (getenv("OLDMEM") != NULL) - do_old_mem = true; /* XXX temporary */ - myname = gawk_name(argv[0]); os_arg_fixup(&argc, &argv); /* emulate redirection, expand wildcards */ |