diff options
author | markm <markm@FreeBSD.org> | 2001-12-02 22:46:47 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2001-12-02 22:46:47 +0000 |
commit | 6bd89ae377f44970c286050b4532cd0b77b2259f (patch) | |
tree | d0bef2659a59b5541366f3d1f06b469449dc7269 | |
parent | 18cc007439fd4537b38b0a18777997e42808118b (diff) | |
download | FreeBSD-src-6bd89ae377f44970c286050b4532cd0b77b2259f.zip FreeBSD-src-6bd89ae377f44970c286050b4532cd0b77b2259f.tar.gz |
Use __FBSDID().
-rw-r--r-- | usr.bin/cap_mkdb/cap_mkdb.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/cap_mkdb/cap_mkdb.c b/usr.bin/cap_mkdb/cap_mkdb.c index 8218316..31813b3 100644 --- a/usr.bin/cap_mkdb/cap_mkdb.c +++ b/usr.bin/cap_mkdb/cap_mkdb.c @@ -31,19 +31,19 @@ * SUCH DAMAGE. */ +#include <sys/cdefs.h> + +__FBSDID("$FreeBSD$"); + #ifndef lint static const char copyright[] = "@(#) Copyright (c) 1992, 1993\n\ The Regents of the University of California. All rights reserved.\n"; -#endif /* not lint */ +#endif #ifndef lint -#if 0 -static char sccsid[] = "@(#)cap_mkdb.c 8.1 (Berkeley) 6/6/93"; +static const char sccsid[] = "@(#)cap_mkdb.c 8.1 (Berkeley) 6/6/93"; #endif -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ #include <sys/param.h> #include <sys/stat.h> |