diff options
author | deraadt <> | 2009-10-27 23:59:59 +0000 |
---|---|---|
committer | deraadt <> | 2009-10-27 23:59:59 +0000 |
commit | 0343d1a4aa2712e24719f3fef30fbec3bf632419 (patch) | |
tree | 8c1fc3bc69f85513a07c474b52156f2d4840c0dc | |
parent | 85d0fda075749b22bc1a0bed26d0b6bdce4bf10b (diff) | |
download | openbsd-0343d1a4aa2712e24719f3fef30fbec3bf632419.tar.gz openbsd-0343d1a4aa2712e24719f3fef30fbec3bf632419.tar.bz2 openbsd-0343d1a4aa2712e24719f3fef30fbec3bf632419.zip |
rcsid[] and sccsid[] and copyright[] are essentially unmaintained (and
unmaintainable). these days, people use source. these id's do not provide
any benefit, and do hurt the small install media
(the 33,000 line diff is essentially mechanical)
ok with the idea millert, ok dms
-rw-r--r-- | src/lib/libc/stdlib/lsearch.c | 6 | ||||
-rw-r--r-- | src/regress/lib/libc/db/dbtest.c | 16 | ||||
-rw-r--r-- | src/regress/lib/libc/hsearch/hsearchtest.c | 11 |
3 files changed, 3 insertions, 30 deletions
diff --git a/src/lib/libc/stdlib/lsearch.c b/src/lib/libc/stdlib/lsearch.c index 0815430199..a01d80e008 100644 --- a/src/lib/libc/stdlib/lsearch.c +++ b/src/lib/libc/stdlib/lsearch.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: lsearch.c,v 1.3 2004/10/01 04:08:45 jsg Exp $ */ | 1 | /* $OpenBSD: lsearch.c,v 1.4 2009/10/27 23:59:59 deraadt Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 1989, 1993 | 4 | * Copyright (c) 1989, 1993 |
@@ -32,10 +32,6 @@ | |||
32 | * SUCH DAMAGE. | 32 | * SUCH DAMAGE. |
33 | */ | 33 | */ |
34 | 34 | ||
35 | #if defined(LIBC_SCCS) && !defined(lint) | ||
36 | static char sccsid[] = "@(#)lsearch.c 8.1 (Berkeley) 6/4/93"; | ||
37 | #endif /* LIBC_SCCS and not lint */ | ||
38 | |||
39 | #include <sys/types.h> | 35 | #include <sys/types.h> |
40 | #include <string.h> | 36 | #include <string.h> |
41 | #include <search.h> | 37 | #include <search.h> |
diff --git a/src/regress/lib/libc/db/dbtest.c b/src/regress/lib/libc/db/dbtest.c index 8eda40d6b3..c28ec0db5e 100644 --- a/src/regress/lib/libc/db/dbtest.c +++ b/src/regress/lib/libc/db/dbtest.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: dbtest.c,v 1.11 2003/07/31 21:48:02 deraadt Exp $ */ | 1 | /* $OpenBSD: dbtest.c,v 1.12 2009/10/27 23:59:32 deraadt Exp $ */ |
2 | /* $NetBSD: dbtest.c,v 1.8 1996/05/03 21:57:48 cgd Exp $ */ | 2 | /* $NetBSD: dbtest.c,v 1.8 1996/05/03 21:57:48 cgd Exp $ */ |
3 | 3 | ||
4 | /*- | 4 | /*- |
@@ -30,20 +30,6 @@ | |||
30 | * SUCH DAMAGE. | 30 | * SUCH DAMAGE. |
31 | */ | 31 | */ |
32 | 32 | ||
33 | #ifndef lint | ||
34 | static char copyright[] = | ||
35 | "@(#) Copyright (c) 1992, 1993, 1994\n\ | ||
36 | The Regents of the University of California. All rights reserved.\n"; | ||
37 | #endif /* not lint */ | ||
38 | |||
39 | #ifndef lint | ||
40 | #if 0 | ||
41 | static char sccsid[] = "@(#)dbtest.c 8.17 (Berkeley) 9/1/94"; | ||
42 | #else | ||
43 | static char rcsid[] = "$OpenBSD: dbtest.c,v 1.11 2003/07/31 21:48:02 deraadt Exp $"; | ||
44 | #endif | ||
45 | #endif /* not lint */ | ||
46 | |||
47 | #include <sys/param.h> | 33 | #include <sys/param.h> |
48 | #include <sys/stat.h> | 34 | #include <sys/stat.h> |
49 | 35 | ||
diff --git a/src/regress/lib/libc/hsearch/hsearchtest.c b/src/regress/lib/libc/hsearch/hsearchtest.c index 2972b54794..8659ef7e77 100644 --- a/src/regress/lib/libc/hsearch/hsearchtest.c +++ b/src/regress/lib/libc/hsearch/hsearchtest.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: hsearchtest.c,v 1.1 2004/06/24 04:33:07 millert Exp $ */ | 1 | /* $OpenBSD: hsearchtest.c,v 1.2 2009/10/27 23:59:32 deraadt Exp $ */ |
2 | /* $NetBSD: hsearchtest.c,v 1.5 2003/07/26 19:38:46 salo Exp $ */ | 2 | /* $NetBSD: hsearchtest.c,v 1.5 2003/07/26 19:38:46 salo Exp $ */ |
3 | 3 | ||
4 | /* | 4 | /* |
@@ -39,15 +39,6 @@ | |||
39 | * Test program for hsearch() et al. | 39 | * Test program for hsearch() et al. |
40 | */ | 40 | */ |
41 | 41 | ||
42 | #ifndef lint | ||
43 | static const char copyright[] = | ||
44 | "@(#) Copyright (c) 2001 Christopher G. Demetriou. All rights reserved.\n"; | ||
45 | #endif /* not lint */ | ||
46 | |||
47 | #ifndef lint | ||
48 | static const char rcsid[] = "$OpenBSD: hsearchtest.c,v 1.1 2004/06/24 04:33:07 millert Exp $"; | ||
49 | #endif /* not lint */ | ||
50 | |||
51 | #include <search.h> | 42 | #include <search.h> |
52 | #include <stdlib.h> | 43 | #include <stdlib.h> |
53 | #include <stdio.h> | 44 | #include <stdio.h> |