diff options
| author | mycroft <mycroft@NetBSD.org> | 1998-07-26 16:11:39 +0000 |
|---|---|---|
| committer | mycroft <mycroft@NetBSD.org> | 1998-07-26 16:11:39 +0000 |
| commit | 11961241abd27c9cf1344a211e8331ffd25259b9 (patch) | |
| tree | fec5261b4fff07534ed6c5ccd7c2535cefe0cc08 /mille/misc.c | |
| parent | e25bc1e9c4985c088b79ce6c6633da8c3c19aaf5 (diff) | |
| download | bsdgames-darwin-11961241abd27c9cf1344a211e8331ffd25259b9.tar.gz bsdgames-darwin-11961241abd27c9cf1344a211e8331ffd25259b9.zip | |
const poisoning.
Diffstat (limited to 'mille/misc.c')
| -rw-r--r-- | mille/misc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mille/misc.c b/mille/misc.c index 2fcd9379..6971d06f 100644 --- a/mille/misc.c +++ b/mille/misc.c @@ -1,4 +1,4 @@ -/* $NetBSD: misc.c,v 1.6 1997/10/12 00:54:16 lukem Exp $ */ +/* $NetBSD: misc.c,v 1.7 1998/07/26 16:11:40 mycroft Exp $ */ /* * Copyright (c) 1983, 1993 @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 5/31/93"; #else -__RCSID("$NetBSD: misc.c,v 1.6 1997/10/12 00:54:16 lukem Exp $"); +__RCSID("$NetBSD: misc.c,v 1.7 1998/07/26 16:11:40 mycroft Exp $"); #endif #endif /* not lint */ @@ -69,10 +69,10 @@ __RCSID("$NetBSD: misc.c,v 1.6 1997/10/12 00:54:16 lukem Exp $"); bool #if __STDC__ -error(char *str, ...) +error(const char *str, ...) #else error(str, va_alist) - char *str; + const char *str; va_dcl #endif { |
