diff options
author | markm <markm@FreeBSD.org> | 2001-12-02 23:34:16 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2001-12-02 23:34:16 +0000 |
commit | 8896138d554d35b01373620fbe55221f586eda5b (patch) | |
tree | f7458912ffd4fd4290e87a35adf659b829569c38 /usr.bin/col | |
parent | 155bbc12c791bd47bd59c47f7468a5183700002c (diff) | |
download | FreeBSD-src-8896138d554d35b01373620fbe55221f586eda5b.zip FreeBSD-src-8896138d554d35b01373620fbe55221f586eda5b.tar.gz |
Use __FBSDID().
Diffstat (limited to 'usr.bin/col')
-rw-r--r-- | usr.bin/col/col.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/col/col.c b/usr.bin/col/col.c index ec8a499..402bcf5 100644 --- a/usr.bin/col/col.c +++ b/usr.bin/col/col.c @@ -34,19 +34,19 @@ * SUCH DAMAGE. */ +#include <sys/cdefs.h> + +__FBSDID("$FreeBSD$"); + #ifndef lint static const char copyright[] = "@(#) Copyright (c) 1990, 1993, 1994\n\ The Regents of the University of California. All rights reserved.\n"; -#endif /* not lint */ +#endif #ifndef lint -#if 0 -static char sccsid[] = "@(#)col.c 8.5 (Berkeley) 5/4/95"; +static const char sccsid[] = "@(#)col.c 8.5 (Berkeley) 5/4/95"; #endif -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ #include <ctype.h> #include <err.h> |