summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--usr.bin/column/column.c10
-rw-r--r--usr.bin/comm/comm.c12
2 files changed, 12 insertions, 10 deletions
diff --git a/usr.bin/column/column.c b/usr.bin/column/column.c
index 4a01904..21bff28 100644
--- a/usr.bin/column/column.c
+++ b/usr.bin/column/column.c
@@ -29,19 +29,21 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
+#include <sys/cdefs.h>
+
+__FBSDID("$FreeBSD$");
+
#ifndef lint
static const char copyright[] =
"@(#) Copyright (c) 1989, 1993, 1994\n\
The Regents of the University of California. All rights reserved.\n";
-#endif /* not lint */
+#endif
#ifndef lint
static const char sccsid[] = "@(#)column.c 8.4 (Berkeley) 5/4/95";
-#endif /* not lint */
+#endif
#include <sys/types.h>
#include <sys/ioctl.h>
diff --git a/usr.bin/comm/comm.c b/usr.bin/comm/comm.c
index 4a35984..941233e 100644
--- a/usr.bin/comm/comm.c
+++ b/usr.bin/comm/comm.c
@@ -34,19 +34,19 @@
* SUCH DAMAGE.
*/
+#include <sys/cdefs.h>
+
+__FBSDID("$FreeBSD$");
+
#ifndef lint
static const char copyright[] =
"@(#) Copyright (c) 1989, 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[] = "From: @(#)comm.c 8.4 (Berkeley) 5/4/95";
+static const char sccsid[] = "From: @(#)comm.c 8.4 (Berkeley) 5/4/95";
#endif
-static const char rcsid[] =
- "$FreeBSD$";
-#endif /* not lint */
#include <ctype.h>
#include <err.h>
OpenPOWER on IntegriCloud