Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.bin/sort Retire __SCCSID. It has only archeological valu...
details: https://anonhg.NetBSD.org/src/rev/0637c9d0cf50
branches: trunk
changeset: 748836:0637c9d0cf50
user: joerg <joerg%NetBSD.org@localhost>
date: Fri Nov 06 18:34:22 2009 +0000
description:
Retire __SCCSID. It has only archeological value now. Also retire lint
conditional around __RCSID, lint can handle that fine.
diffstat:
usr.bin/sort/append.c | 7 ++-----
usr.bin/sort/fields.c | 7 ++-----
usr.bin/sort/files.c | 7 ++-----
usr.bin/sort/fsort.c | 7 ++-----
usr.bin/sort/init.c | 7 ++-----
usr.bin/sort/msort.c | 7 ++-----
usr.bin/sort/sort.c | 7 ++-----
usr.bin/sort/tmp.c | 7 ++-----
8 files changed, 16 insertions(+), 40 deletions(-)
diffs (168 lines):
diff -r c5d54a48a673 -r 0637c9d0cf50 usr.bin/sort/append.c
--- a/usr.bin/sort/append.c Fri Nov 06 18:28:10 2009 +0000
+++ b/usr.bin/sort/append.c Fri Nov 06 18:34:22 2009 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: append.c,v 1.22 2009/09/10 22:02:40 dsl Exp $ */
+/* $NetBSD: append.c,v 1.23 2009/11/06 18:34:22 joerg Exp $ */
/*-
* Copyright (c) 2000-2003 The NetBSD Foundation, Inc.
@@ -63,10 +63,7 @@
#include "sort.h"
-#ifndef lint
-__RCSID("$NetBSD: append.c,v 1.22 2009/09/10 22:02:40 dsl Exp $");
-__SCCSID("@(#)append.c 8.1 (Berkeley) 6/6/93");
-#endif /* not lint */
+__RCSID("$NetBSD: append.c,v 1.23 2009/11/06 18:34:22 joerg Exp $");
#include <stdlib.h>
diff -r c5d54a48a673 -r 0637c9d0cf50 usr.bin/sort/fields.c
--- a/usr.bin/sort/fields.c Fri Nov 06 18:28:10 2009 +0000
+++ b/usr.bin/sort/fields.c Fri Nov 06 18:34:22 2009 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: fields.c,v 1.30 2009/10/07 21:02:57 dsl Exp $ */
+/* $NetBSD: fields.c,v 1.31 2009/11/06 18:34:22 joerg Exp $ */
/*-
* Copyright (c) 2000-2003 The NetBSD Foundation, Inc.
@@ -65,10 +65,7 @@
#include "sort.h"
-#ifndef lint
-__RCSID("$NetBSD: fields.c,v 1.30 2009/10/07 21:02:57 dsl Exp $");
-__SCCSID("@(#)fields.c 8.1 (Berkeley) 6/6/93");
-#endif /* not lint */
+__RCSID("$NetBSD: fields.c,v 1.31 2009/11/06 18:34:22 joerg Exp $");
#define SKIP_BLANKS(ptr) { \
if (BLANK & d_mask[*(ptr)]) \
diff -r c5d54a48a673 -r 0637c9d0cf50 usr.bin/sort/files.c
--- a/usr.bin/sort/files.c Fri Nov 06 18:28:10 2009 +0000
+++ b/usr.bin/sort/files.c Fri Nov 06 18:34:22 2009 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: files.c,v 1.40 2009/10/07 21:03:29 dsl Exp $ */
+/* $NetBSD: files.c,v 1.41 2009/11/06 18:34:22 joerg Exp $ */
/*-
* Copyright (c) 2000-2003 The NetBSD Foundation, Inc.
@@ -64,10 +64,7 @@
#include "sort.h"
#include "fsort.h"
-#ifndef lint
-__RCSID("$NetBSD: files.c,v 1.40 2009/10/07 21:03:29 dsl Exp $");
-__SCCSID("@(#)files.c 8.1 (Berkeley) 6/6/93");
-#endif /* not lint */
+__RCSID("$NetBSD: files.c,v 1.41 2009/11/06 18:34:22 joerg Exp $");
#include <string.h>
diff -r c5d54a48a673 -r 0637c9d0cf50 usr.bin/sort/fsort.c
--- a/usr.bin/sort/fsort.c Fri Nov 06 18:28:10 2009 +0000
+++ b/usr.bin/sort/fsort.c Fri Nov 06 18:34:22 2009 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: fsort.c,v 1.45 2009/10/09 20:32:57 dsl Exp $ */
+/* $NetBSD: fsort.c,v 1.46 2009/11/06 18:34:22 joerg Exp $ */
/*-
* Copyright (c) 2000-2003 The NetBSD Foundation, Inc.
@@ -71,10 +71,7 @@
#include "sort.h"
#include "fsort.h"
-#ifndef lint
-__RCSID("$NetBSD: fsort.c,v 1.45 2009/10/09 20:32:57 dsl Exp $");
-__SCCSID("@(#)fsort.c 8.1 (Berkeley) 6/6/93");
-#endif /* not lint */
+__RCSID("$NetBSD: fsort.c,v 1.46 2009/11/06 18:34:22 joerg Exp $");
#include <stdlib.h>
#include <string.h>
diff -r c5d54a48a673 -r 0637c9d0cf50 usr.bin/sort/init.c
--- a/usr.bin/sort/init.c Fri Nov 06 18:28:10 2009 +0000
+++ b/usr.bin/sort/init.c Fri Nov 06 18:34:22 2009 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: init.c,v 1.23 2009/09/10 22:02:40 dsl Exp $ */
+/* $NetBSD: init.c,v 1.24 2009/11/06 18:34:22 joerg Exp $ */
/*-
* Copyright (c) 2000-2003 The NetBSD Foundation, Inc.
@@ -63,10 +63,7 @@
#include "sort.h"
-#ifndef lint
-__RCSID("$NetBSD: init.c,v 1.23 2009/09/10 22:02:40 dsl Exp $");
-__SCCSID("@(#)init.c 8.1 (Berkeley) 6/6/93");
-#endif /* not lint */
+__RCSID("$NetBSD: init.c,v 1.24 2009/11/06 18:34:22 joerg Exp $");
#include <ctype.h>
#include <string.h>
diff -r c5d54a48a673 -r 0637c9d0cf50 usr.bin/sort/msort.c
--- a/usr.bin/sort/msort.c Fri Nov 06 18:28:10 2009 +0000
+++ b/usr.bin/sort/msort.c Fri Nov 06 18:34:22 2009 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: msort.c,v 1.28 2009/10/09 20:29:43 dsl Exp $ */
+/* $NetBSD: msort.c,v 1.29 2009/11/06 18:34:22 joerg Exp $ */
/*-
* Copyright (c) 2000-2003 The NetBSD Foundation, Inc.
@@ -64,10 +64,7 @@
#include "sort.h"
#include "fsort.h"
-#ifndef lint
-__RCSID("$NetBSD: msort.c,v 1.28 2009/10/09 20:29:43 dsl Exp $");
-__SCCSID("@(#)msort.c 8.1 (Berkeley) 6/6/93");
-#endif /* not lint */
+__RCSID("$NetBSD: msort.c,v 1.29 2009/11/06 18:34:22 joerg Exp $");
#include <stdlib.h>
#include <string.h>
diff -r c5d54a48a673 -r 0637c9d0cf50 usr.bin/sort/sort.c
--- a/usr.bin/sort/sort.c Fri Nov 06 18:28:10 2009 +0000
+++ b/usr.bin/sort/sort.c Fri Nov 06 18:34:22 2009 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: sort.c,v 1.56 2009/09/26 21:16:55 dsl Exp $ */
+/* $NetBSD: sort.c,v 1.57 2009/11/06 18:34:22 joerg Exp $ */
/*-
* Copyright (c) 2000-2003 The NetBSD Foundation, Inc.
@@ -76,10 +76,7 @@
The Regents of the University of California. All rights reserved.");
#endif /* not lint */
-#ifndef lint
-__RCSID("$NetBSD: sort.c,v 1.56 2009/09/26 21:16:55 dsl Exp $");
-__SCCSID("@(#)sort.c 8.1 (Berkeley) 6/6/93");
-#endif /* not lint */
+__RCSID("$NetBSD: sort.c,v 1.57 2009/11/06 18:34:22 joerg Exp $");
#include <sys/types.h>
#include <sys/time.h>
diff -r c5d54a48a673 -r 0637c9d0cf50 usr.bin/sort/tmp.c
--- a/usr.bin/sort/tmp.c Fri Nov 06 18:28:10 2009 +0000
+++ b/usr.bin/sort/tmp.c Fri Nov 06 18:34:22 2009 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: tmp.c,v 1.15 2009/09/26 21:16:55 dsl Exp $ */
+/* $NetBSD: tmp.c,v 1.16 2009/11/06 18:34:22 joerg Exp $ */
/*-
* Copyright (c) 2000-2003 The NetBSD Foundation, Inc.
@@ -63,10 +63,7 @@
#include <sys/cdefs.h>
-#ifndef lint
-__RCSID("$NetBSD: tmp.c,v 1.15 2009/09/26 21:16:55 dsl Exp $");
-__SCCSID("@(#)tmp.c 8.1 (Berkeley) 6/6/93");
-#endif /* not lint */
+__RCSID("$NetBSD: tmp.c,v 1.16 2009/11/06 18:34:22 joerg Exp $");
#include <sys/param.h>
Home |
Main Index |
Thread Index |
Old Index