From 4da3fc486ea1011af1350c2eb2855cc11827afaa Mon Sep 17 00:00:00 2001 From: Keith Bostic Date: Sat, 12 May 1990 22:27:01 -0800 Subject: [PATCH 1/1] move to /usr/share, move pathnames to pathnames.h SCCS-vsn: games/monop/cards.c 5.3 --- usr/src/games/monop/cards.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/usr/src/games/monop/cards.c b/usr/src/games/monop/cards.c index 27bbcd7db8..4558d07605 100644 --- a/usr/src/games/monop/cards.c +++ b/usr/src/games/monop/cards.c @@ -16,10 +16,11 @@ */ #ifndef lint -static char sccsid[] = "@(#)cards.c 5.2 (Berkeley) %G%"; +static char sccsid[] = "@(#)cards.c 5.3 (Berkeley) %G%"; #endif /* not lint */ # include "monop.ext" +# include "pathnames.h" /* * These routine deal with the card decks @@ -28,7 +29,7 @@ static char sccsid[] = "@(#)cards.c 5.2 (Berkeley) %G%"; # define GOJF 'F' /* char for get-out-of-jail-free cards */ # ifndef DEV -static char *cardfile = "/usr/games/lib/cards.pck"; +static char *cardfile = _PATH_CARDS; # else static char *cardfile = "cards.pck"; # endif -- 2.20.1