diff options
author | obrien <obrien@FreeBSD.org> | 2002-05-08 20:37:48 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-05-08 20:37:48 +0000 |
commit | c9b486b0a34c05b806f51d17eaf13fd60b9da9d9 (patch) | |
tree | 84bd3bab5c04e5ce497808a582b3bdb5a9c1786f /games | |
parent | 45b0fa9ec0983fe86fb0e2f307ed055697f8b8f9 (diff) | |
download | FreeBSD-src-c9b486b0a34c05b806f51d17eaf13fd60b9da9d9.zip FreeBSD-src-c9b486b0a34c05b806f51d17eaf13fd60b9da9d9.tar.gz |
It is not clear if "#endif FOO" is allowed by ANSI.
Gcc 3.1 complains loudly, so don't do it.
Diffstat (limited to 'games')
-rw-r--r-- | games/atc/input.c | 2 | ||||
-rw-r--r-- | games/atc/log.c | 2 | ||||
-rw-r--r-- | games/atc/update.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/games/atc/input.c b/games/atc/input.c index 1b42ac5..b6f1889 100644 --- a/games/atc/input.c +++ b/games/atc/input.c @@ -49,7 +49,7 @@ static char sccsid[] = "@(#)input.c 8.1 (Berkeley) 5/31/93"; #endif static const char rcsid[] = "$FreeBSD$"; -#endif not lint +#endif /* not lint */ #include <stdlib.h> #include <string.h> diff --git a/games/atc/log.c b/games/atc/log.c index 0bf6958..471b9ec 100644 --- a/games/atc/log.c +++ b/games/atc/log.c @@ -49,7 +49,7 @@ static char sccsid[] = "@(#)log.c 8.1 (Berkeley) 5/31/93"; #endif static const char rcsid[] = "$FreeBSD$"; -#endif not lint +#endif /* not lint */ #include <string.h> #include "include.h" diff --git a/games/atc/update.c b/games/atc/update.c index 139ea4e..f7d898f 100644 --- a/games/atc/update.c +++ b/games/atc/update.c @@ -49,7 +49,7 @@ static char sccsid[] = "@(#)update.c 8.1 (Berkeley) 5/31/93"; #endif static const char rcsid[] = "$FreeBSD$"; -#endif not lint +#endif /* not lint */ #include <string.h> #include "include.h" |