diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2011-12-31 20:51:11 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2011-12-31 20:51:11 +0200 |
commit | a89bd16ff78c74513461af3f676d87d4eb9cfd3c (patch) | |
tree | 25977f27d837e3713b52e056f533bcbaba8a4597 /msg.c | |
parent | a32faf6354086864b55755c968f72a90e7e8f0d1 (diff) | |
download | egawk-a89bd16ff78c74513461af3f676d87d4eb9cfd3c.tar.gz egawk-a89bd16ff78c74513461af3f676d87d4eb9cfd3c.tar.bz2 egawk-a89bd16ff78c74513461af3f676d87d4eb9cfd3c.zip |
Remove ancient STREQ, STREQN macros.
Diffstat (limited to 'msg.c')
-rw-r--r-- | msg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -46,7 +46,7 @@ err(const char *s, const char *emsg, va_list argp) (void) fflush(output_fp); me = myname; - if (STREQN(me, "dgawk", 5)) + if (strncmp(me, "dgawk", 5) == 0) me = &myname[1]; (void) fprintf(stderr, "%s: ", me); #ifdef GAWKDEBUG |