diff options
author | obrien <obrien@FreeBSD.org> | 2003-05-03 18:41:59 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2003-05-03 18:41:59 +0000 |
commit | 19105c8312c841631a5eff3408f8a43f4958e9ba (patch) | |
tree | 49aa00dccbd9d3c7a4e310c1b0f3deb09f6b9f54 /sbin/shutdown | |
parent | 7113858cc752a0d0c37bba9a3ead02f89a580a71 (diff) | |
download | FreeBSD-src-19105c8312c841631a5eff3408f8a43f4958e9ba.zip FreeBSD-src-19105c8312c841631a5eff3408f8a43f4958e9ba.tar.gz |
Use __FBSDID() to quiet GCC 3.3 warnings.
Diffstat (limited to 'sbin/shutdown')
-rw-r--r-- | sbin/shutdown/shutdown.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/shutdown/shutdown.c b/sbin/shutdown/shutdown.c index 23aae0c..85b1985 100644 --- a/sbin/shutdown/shutdown.c +++ b/sbin/shutdown/shutdown.c @@ -31,6 +31,7 @@ * SUCH DAMAGE. */ +#if 0 #ifndef lint static const char copyright[] = "@(#) Copyright (c) 1988, 1990, 1993\n\ @@ -38,12 +39,11 @@ static const char copyright[] = #endif /* not lint */ #ifndef lint -#if 0 static char sccsid[] = "@(#)shutdown.c 8.4 (Berkeley) 4/28/95"; -#endif -static const char rcsid[] = - "$FreeBSD$"; #endif /* not lint */ +#endif +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/time.h> |