diff options
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> |