summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
authorJohn Millaway <john43@users.sourceforge.net>2002-04-19 22:20:24 +0000
committerJohn Millaway <john43@users.sourceforge.net>2002-04-19 22:20:24 +0000
commitdf519d1acbd0b279e6c972ad53eee63dd9d4d5c3 (patch)
tree7b15e162a819900fc8c58005d5250a1a64d18a3e /misc.c
parentffd33bd186d7f1f1f6d786aad9dd036ffda4469a (diff)
Applied 'const' to a few more char*, where appropriate.
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc.c b/misc.c
index 35bca5f..55fd07d 100644
--- a/misc.c
+++ b/misc.c
@@ -36,7 +36,7 @@
/* Append "#define defname value\n" to the running buffer. */
void action_define( defname, value )
-char *defname;
+const char *defname;
int value;
{
char buf[MAXLINE];
@@ -523,7 +523,7 @@ int value;
/* myctoi - return the integer represented by a string of digits */
int myctoi( array )
-char *array;
+const char *array;
{
int val = 0;