summaryrefslogtreecommitdiffstats
path: root/battlestar/parse.c
diff options
context:
space:
mode:
authorhubertf <hubertf@NetBSD.org>1999-02-10 01:36:50 +0000
committerhubertf <hubertf@NetBSD.org>1999-02-10 01:36:50 +0000
commit100d94357a66a55e6b4fdc8a07350d7b62a945d6 (patch)
tree5cc11420edf6395ec5d7520b9eee92aa629ce353 /battlestar/parse.c
parent22a27dede77166c7bdf1de647d4d2b961fcd92c2 (diff)
downloadbsdgames-darwin-100d94357a66a55e6b4fdc8a07350d7b62a945d6.tar.gz
bsdgames-darwin-100d94357a66a55e6b4fdc8a07350d7b62a945d6.tar.zst
bsdgames-darwin-100d94357a66a55e6b4fdc8a07350d7b62a945d6.zip
Const poisoning, per PR 6660 by Joseph Myers <jsm28@cam.ac.uk>
Diffstat (limited to 'battlestar/parse.c')
-rw-r--r--battlestar/parse.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/battlestar/parse.c b/battlestar/parse.c
index ccf5d01b..8d85e6c5 100644
--- a/battlestar/parse.c
+++ b/battlestar/parse.c
@@ -1,4 +1,4 @@
-/* $NetBSD: parse.c,v 1.6 1997/10/11 02:07:33 lukem Exp $ */
+/* $NetBSD: parse.c,v 1.7 1999/02/10 01:36:50 hubertf Exp $ */
/*
* Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)parse.c 8.2 (Berkeley) 4/28/95";
#else
-__RCSID("$NetBSD: parse.c,v 1.6 1997/10/11 02:07:33 lukem Exp $");
+__RCSID("$NetBSD: parse.c,v 1.7 1999/02/10 01:36:50 hubertf Exp $");
#endif
#endif /* not lint */
@@ -55,7 +55,7 @@ wordinit()
int
hash(s)
- char *s;
+ const char *s;
{
int hashval = 0;
@@ -69,7 +69,7 @@ hash(s)
struct wlist *
lookup(s)
- char *s;
+ const char *s;
{
struct wlist *wp;