diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-04-06 18:50:39 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-04-06 18:50:39 +0000 |
commit | 0f64621783b3f46a4851826b9f4284e3c9dbeb61 (patch) | |
tree | 352fcb09d9321309ec519dc3144147a24bd64bda /games/cribbage/cribbage.h | |
parent | 997f28507be542389b846c45806474af6bbfdedc (diff) |
2451 lines of strdup/sprintf/strcpy whacking. mostly ok'd by pjanzen
already, but he may have later changes to make still.
Diffstat (limited to 'games/cribbage/cribbage.h')
-rw-r--r-- | games/cribbage/cribbage.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/cribbage/cribbage.h b/games/cribbage/cribbage.h index 918a8f318ce..ea1d5397844 100644 --- a/games/cribbage/cribbage.h +++ b/games/cribbage/cribbage.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cribbage.h,v 1.4 2002/02/16 21:27:09 millert Exp $ */ +/* $OpenBSD: cribbage.h,v 1.5 2003/04/06 18:50:36 deraadt Exp $ */ /* $NetBSD: cribbage.h,v 1.3 1995/03/21 15:08:46 cgd Exp $ */ /* @@ -61,7 +61,7 @@ extern bool rflag; /* if all cuts random */ extern bool quiet; /* if suppress random mess */ extern bool playing; /* currently playing game */ -extern char expl[]; /* string for explanation */ +extern char expl[128]; /* string for explanation */ void addmsg(const char *, ...); int adjust(CARD [], CARD); |