summaryrefslogtreecommitdiffstats
path: root/usr.bin/awk/parse.c
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2002-12-19 21:24:28 +0000
committermillert <millert@openbsd.org>2002-12-19 21:24:28 +0000
commit9a69093aa0ba6629c4b0573cd8a6403e9db41aab (patch)
tree516e55e72e52b01f2d09ca2f1f77a3b15137ec7a /usr.bin/awk/parse.c
parentmake sure we are hitting user stack and not smth else here, make init show normal vsz in ps now (diff)
downloadwireguard-openbsd-9a69093aa0ba6629c4b0573cd8a6403e9db41aab.tar.xz
wireguard-openbsd-9a69093aa0ba6629c4b0573cd8a6403e9db41aab.zip
Update to the One True Awk version 20021213
Diffstat (limited to 'usr.bin/awk/parse.c')
-rw-r--r--usr.bin/awk/parse.c4
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;