diff options
author | des <des@FreeBSD.org> | 2002-05-23 00:38:07 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2002-05-23 00:38:07 +0000 |
commit | bc5da2aaa33d76771cd47cf90371acbb01d74278 (patch) | |
tree | f1a45d72dce61b7b2a2e4fab1552ab7912563e61 /games/hack/config.h | |
parent | b4f31d6da41b4104cde3503e1ddd2658e8443493 (diff) | |
download | FreeBSD-src-bc5da2aaa33d76771cd47cf90371acbb01d74278.zip FreeBSD-src-bc5da2aaa33d76771cd47cf90371acbb01d74278.tar.gz |
Comment out extra tokens after #else and #endif.
Diffstat (limited to 'games/hack/config.h')
-rw-r--r-- | games/hack/config.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/games/hack/config.h b/games/hack/config.h index c4b78a7..dd25cfa 100644 --- a/games/hack/config.h +++ b/games/hack/config.h @@ -1,5 +1,6 @@ /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */ /* config.h - version 1.0.3 */ +/* $FreeBSD$ */ #include "pathnames.h" @@ -64,8 +65,8 @@ #ifdef BSD #define SUSPEND /* let ^Z suspend the game */ -#endif BSD -#endif UNIX +#endif /* BSD */ +#endif /* UNIX */ #ifdef CHDIR /* @@ -74,9 +75,9 @@ */ #ifdef QUEST #define HACKDIR _PATH_QUEST -#else QUEST +#else /* QUEST */ #define HACKDIR _PATH_HACK -#endif QUEST +#endif /* QUEST */ /* * Some system administrators are stupid enough to make Hack suid root @@ -92,7 +93,7 @@ * simultaneously, define HACKDIR, SECURE and MAX_NR_OF_PLAYERS. * #define MAX_NR_OF_PLAYERS 100 */ -#endif CHDIR +#endif /* CHDIR */ /* size of terminal screen is (at least) (ROWNO+2) by COLNO */ #define COLNO 80 @@ -136,4 +137,4 @@ typedef xchar boolean; /* 0 or 1 */ #define SIZE(x) (int)(sizeof(x) / sizeof(x[0])) -#endif CONFIG +#endif /* CONFIG */ |