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/colcrt | |
parent | 155bbc12c791bd47bd59c47f7468a5183700002c (diff) | |
download | FreeBSD-src-8896138d554d35b01373620fbe55221f586eda5b.zip FreeBSD-src-8896138d554d35b01373620fbe55221f586eda5b.tar.gz |
Use __FBSDID().
Diffstat (limited to 'usr.bin/colcrt')
-rw-r--r-- | usr.bin/colcrt/colcrt.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/colcrt/colcrt.c b/usr.bin/colcrt/colcrt.c index 77cc0d2..ccfb179 100644 --- a/usr.bin/colcrt/colcrt.c +++ b/usr.bin/colcrt/colcrt.c @@ -31,19 +31,19 @@ * SUCH DAMAGE. */ +#include <sys/cdefs.h> + +__FBSDID("$FreeBSD$"); + #ifndef lint static const char copyright[] = "@(#) Copyright (c) 1980, 1993\n\ The Regents of the University of California. All rights reserved.\n"; -#endif /* not lint */ +#endif #ifndef lint -#if 0 static const char sccsid[] = "@(#)colcrt.c 8.1 (Berkeley) 6/6/93"; #endif -static const char rcsid[] = - "$FreeBSD$"; -#endif /* not lint */ #include <err.h> #include <stdio.h> |