const poisoning.
This commit is contained in:
parent
3d7514132e
commit
c9909eceee
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: mille.h,v 1.7 1997/10/12 00:54:11 lukem Exp $ */
|
/* $NetBSD: mille.h,v 1.8 1998/07/26 16:11:39 mycroft Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1982, 1993
|
* Copyright (c) 1982, 1993
|
||||||
@ -233,7 +233,7 @@ void check_go __P((void));
|
|||||||
void check_more __P((void));
|
void check_more __P((void));
|
||||||
void die __P((int));
|
void die __P((int));
|
||||||
void domove __P((void));
|
void domove __P((void));
|
||||||
bool error __P((char *, ...));
|
bool error __P((const char *, ...));
|
||||||
void extrapolate __P((PLAY *));
|
void extrapolate __P((PLAY *));
|
||||||
void finalscore __P((PLAY *));
|
void finalscore __P((PLAY *));
|
||||||
CARD getcard __P((void));
|
CARD getcard __P((void));
|
||||||
|
@ -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
|
* Copyright (c) 1983, 1993
|
||||||
@ -38,7 +38,7 @@
|
|||||||
#if 0
|
#if 0
|
||||||
static char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 5/31/93";
|
static char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 5/31/93";
|
||||||
#else
|
#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
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
|
||||||
@ -69,10 +69,10 @@ __RCSID("$NetBSD: misc.c,v 1.6 1997/10/12 00:54:16 lukem Exp $");
|
|||||||
|
|
||||||
bool
|
bool
|
||||||
#if __STDC__
|
#if __STDC__
|
||||||
error(char *str, ...)
|
error(const char *str, ...)
|
||||||
#else
|
#else
|
||||||
error(str, va_alist)
|
error(str, va_alist)
|
||||||
char *str;
|
const char *str;
|
||||||
va_dcl
|
va_dcl
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user