summaryrefslogtreecommitdiff
path: root/ext.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2010-12-28 21:48:44 +0200
committerArnold D. Robbins <arnold@skeeve.com>2010-12-28 21:48:44 +0200
commit4ecc73507924d09085e0149492045d5cbe16f7a0 (patch)
treebf6b150eebe4e9a3c403124bfc735170757e0775 /ext.c
parente5fd15444e61ac39fcb63013d298fc2aea4fe74a (diff)
downloadgawk-4ecc73507924d09085e0149492045d5cbe16f7a0.tar.gz
Minor bug fixes, lots more doc, make dist.
Diffstat (limited to 'ext.c')
-rw-r--r--ext.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext.c b/ext.c
index f6d84205..4c80fa16 100644
--- a/ext.c
+++ b/ext.c
@@ -121,11 +121,11 @@ done:
/* make_builtin --- register name to be called as func with a builtin body */
void
-make_builtin(char *name, NODE *(*func)(int), int count)
+make_builtin(const char *name, NODE *(*func)(int), int count)
{
NODE *p, *symbol, *f;
INSTRUCTION *b, *r;
- char *sp;
+ const char *sp;
char *pname;
char **vnames = NULL;
char c, buf[200];