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/atc/input.c | |
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/atc/input.c')
-rw-r--r-- | games/atc/input.c | 2 |
1 files changed, 1 insertions, 1 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> |