summaryrefslogtreecommitdiff
path: root/usr.bin/sort
diff options
context:
space:
mode:
authorjoerg <joerg@NetBSD.org>2009-11-06 18:34:22 +0000
committerjoerg <joerg@NetBSD.org>2009-11-06 18:34:22 +0000
commit2b8a0536177e8e4dedd09b11fdaeb6e7a990ce1a (patch)
tree09471b9a9efc069bd948aebb92d8b785b35c1979 /usr.bin/sort
parentd50bb58a8589a0cdad5955f38b4782a4455d6a87 (diff)
Retire __SCCSID. It has only archeological value now. Also retire lint
conditional around __RCSID, lint can handle that fine.
Diffstat (limited to 'usr.bin/sort')
-rw-r--r--usr.bin/sort/append.c7
-rw-r--r--usr.bin/sort/fields.c7
-rw-r--r--usr.bin/sort/files.c7
-rw-r--r--usr.bin/sort/fsort.c7
-rw-r--r--usr.bin/sort/init.c7
-rw-r--r--usr.bin/sort/msort.c7
-rw-r--r--usr.bin/sort/sort.c7
-rw-r--r--usr.bin/sort/tmp.c7
8 files changed, 16 insertions, 40 deletions
diff --git a/usr.bin/sort/append.c b/usr.bin/sort/append.c
index d3b53513349..07e15e1da2f 100644
--- a/usr.bin/sort/append.c
+++ b/usr.bin/sort/append.c
@@ -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 --git a/usr.bin/sort/fields.c b/usr.bin/sort/fields.c
index f7c17ddafa4..95c54ac2f3f 100644
--- a/usr.bin/sort/fields.c
+++ b/usr.bin/sort/fields.c
@@ -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 --git a/usr.bin/sort/files.c b/usr.bin/sort/files.c
index add173e88ef..b36f6945a8c 100644
--- a/usr.bin/sort/files.c
+++ b/usr.bin/sort/files.c
@@ -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 --git a/usr.bin/sort/fsort.c b/usr.bin/sort/fsort.c
index de50b9d5a6a..fc6e4c0cff4 100644
--- a/usr.bin/sort/fsort.c
+++ b/usr.bin/sort/fsort.c
@@ -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 --git a/usr.bin/sort/init.c b/usr.bin/sort/init.c
index d294c863498..0a1b9bc38cb 100644
--- a/usr.bin/sort/init.c
+++ b/usr.bin/sort/init.c
@@ -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 --git a/usr.bin/sort/msort.c b/usr.bin/sort/msort.c
index e6678c44f96..51d2d4f9c38 100644
--- a/usr.bin/sort/msort.c
+++ b/usr.bin/sort/msort.c
@@ -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 --git a/usr.bin/sort/sort.c b/usr.bin/sort/sort.c
index 2173b3833db..80d47fe4a11 100644
--- a/usr.bin/sort/sort.c
+++ b/usr.bin/sort/sort.c
@@ -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 @@ __COPYRIGHT("@(#) Copyright (c) 1993\
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 --git a/usr.bin/sort/tmp.c b/usr.bin/sort/tmp.c
index c1714e06241..155b3f5acab 100644
--- a/usr.bin/sort/tmp.c
+++ b/usr.bin/sort/tmp.c
@@ -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>