diff options
author | obrien <obrien@FreeBSD.org> | 2003-05-05 09:52:25 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2003-05-05 09:52:25 +0000 |
commit | 392c53b5602bf3e2509d8cca188c3f90be97c36e (patch) | |
tree | c907d9db47f23ada7451bd2fa062c54d95fc1a99 /games/caesar | |
parent | 98d5255d63c13a42c0aa2a18fa0b934016966057 (diff) | |
download | FreeBSD-src-392c53b5602bf3e2509d8cca188c3f90be97c36e.zip FreeBSD-src-392c53b5602bf3e2509d8cca188c3f90be97c36e.tar.gz |
Make the __FBSDID usage consistent
and protect copyright[] from Gcc 3.3's whining.
Diffstat (limited to 'games/caesar')
-rw-r--r-- | games/caesar/caesar.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/games/caesar/caesar.c b/games/caesar/caesar.c index a92131e..54275ce 100644 --- a/games/caesar/caesar.c +++ b/games/caesar/caesar.c @@ -39,6 +39,7 @@ * SUCH DAMAGE. */ +#if 0 #ifndef lint static const char copyright[] = "@(#) Copyright (c) 1989, 1993\n\ @@ -46,13 +47,11 @@ static const char copyright[] = #endif /* not lint */ #ifndef lint -#if 0 static const char sccsid[] = "@(#)caesar.c 8.1 (Berkeley) 5/31/93"; -#else -static const char rcsid[] = - "$FreeBSD$"; -#endif #endif /* not lint */ +#endif +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <errno.h> #include <math.h> |