aboutsummaryrefslogtreecommitdiffstats
path: root/ext.c
diff options
context:
space:
mode:
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];