diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-12-19 21:24:29 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-12-19 21:24:29 +0000 |
commit | 20b6afc1f6af7b8cf2bd8b9933ac91afb729859f (patch) | |
tree | e04b12a8a0d5797db48a995c61a36154409c9fb7 /usr.bin/awk/parse.c | |
parent | 74f6d0d46c772481e8721cc054dcf4d4815852f6 (diff) |
Update to the One True Awk version 20021213
Diffstat (limited to 'usr.bin/awk/parse.c')
-rw-r--r-- | usr.bin/awk/parse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/awk/parse.c b/usr.bin/awk/parse.c index 698bb4cda1d..c10aa44cc79 100644 --- a/usr.bin/awk/parse.c +++ b/usr.bin/awk/parse.c @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.c,v 1.5 2001/09/08 00:12:40 millert Exp $ */ +/* $OpenBSD: parse.c,v 1.6 2002/12/19 21:24:28 millert Exp $ */ /**************************************************************** Copyright (C) Lucent Technologies 1997 All Rights Reserved @@ -254,7 +254,7 @@ void defn(Cell *v, Node *vl, Node *st) /* turn on FCN bit in definition, */ dprintf( ("defining func %s (%d args)\n", v->nval, n) ); } -int isarg(char *s) /* is s in argument list for current function? */ +int isarg(const char *s) /* is s in argument list for current function? */ { /* return -1 if not, otherwise arg # */ extern Node *arglist; Node *p = arglist; |