diff options
-rw-r--r-- | usr.bin/col/col.c | 12 | ||||
-rw-r--r-- | usr.bin/colcrt/colcrt.c | 10 |
2 files changed, 11 insertions, 11 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> 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> |