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/random | |
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/random')
-rw-r--r-- | games/random/random.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/games/random/random.c b/games/random/random.c index 7b45f6e..e7c85bb 100644 --- a/games/random/random.c +++ b/games/random/random.c @@ -34,6 +34,7 @@ * SUCH DAMAGE. */ +#if 0 #ifndef lint static const char copyright[] = "@(#) Copyright (c) 1994\n\ @@ -41,11 +42,9 @@ static const char copyright[] = #endif /* not lint */ #ifndef lint -#if 0 static const char sccsid[] = "@(#)random.c 8.5 (Berkeley) 4/5/94"; -#endif #endif /* not lint */ - +#endif #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); |