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/pom | |
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/pom')
-rw-r--r-- | games/pom/pom.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/games/pom/pom.c b/games/pom/pom.c index b590991..ea8a608 100644 --- a/games/pom/pom.c +++ b/games/pom/pom.c @@ -33,6 +33,7 @@ * SUCH DAMAGE. */ +#if 0 #ifndef lint static const char copyright[] = "@(#) Copyright (c) 1989, 1993\n\ @@ -40,12 +41,11 @@ static const char copyright[] = #endif /* not lint */ #ifndef lint -#if 0 static const char sccsid[] = "@(#)pom.c 8.1 (Berkeley) 5/31/93"; -#endif -static const char rcsid[] = - "$FreeBSD$"; #endif /* not lint */ +#endif +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); /* * Phase of the Moon. Calculates the current phase of the moon. |