diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 2003-05-05 09:52:25 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 2003-05-05 09:52:25 +0000 |
commit | e3c85e02266c84598295f35c93586f932f3473ca (patch) | |
tree | c907d9db47f23ada7451bd2fa062c54d95fc1a99 /games/random | |
parent | f130dcf22a358c27d9f031bb256c3e3d1fd68d98 (diff) | |
download | src-e3c85e02266c84598295f35c93586f932f3473ca.tar.gz src-e3c85e02266c84598295f35c93586f932f3473ca.zip |
Make the __FBSDID usage consistent
and protect copyright[] from Gcc 3.3's whining.
Notes
Notes:
svn path=/head/; revision=114725
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 7b45f6ecd8e3..e7c85bb59ac5 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$"); |