diff options
author | espie <> | 2005-08-08 08:05:37 +0000 |
---|---|---|
committer | espie <> | 2005-08-08 08:05:37 +0000 |
commit | d7398a270c9cd1b7b4d545ed70ea24384781a86c (patch) | |
tree | 5271cd28bf0b2aae56d5048737464cda4d24f702 /src/lib/libc/stdlib | |
parent | 63dd09a8c91fcf1f022506ffd9fcf02dcb61818b (diff) | |
download | openbsd-d7398a270c9cd1b7b4d545ed70ea24384781a86c.tar.gz openbsd-d7398a270c9cd1b7b4d545ed70ea24384781a86c.tar.bz2 openbsd-d7398a270c9cd1b7b4d545ed70ea24384781a86c.zip |
zap remaining rcsid.
Kill old files that are no longer compiled.
okay theo
Diffstat (limited to 'src/lib/libc/stdlib')
55 files changed, 52 insertions, 361 deletions
diff --git a/src/lib/libc/stdlib/_Exit.c b/src/lib/libc/stdlib/_Exit.c index 784015a21d..5a2291a931 100644 --- a/src/lib/libc/stdlib/_Exit.c +++ b/src/lib/libc/stdlib/_Exit.c | |||
@@ -1,13 +1,9 @@ | |||
1 | /* $OpenBSD: _Exit.c,v 1.1 2004/05/03 17:21:13 millert Exp $ */ | 1 | /* $OpenBSD: _Exit.c,v 1.2 2005/08/08 08:05:36 espie Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Placed in the public domain by Todd C. Miller on January 21, 2004. | 4 | * Placed in the public domain by Todd C. Miller on January 21, 2004. |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #if defined(LIBC_SCCS) && !defined(lint) | ||
8 | static char *rcsid = "$OpenBSD: _Exit.c,v 1.1 2004/05/03 17:21:13 millert Exp $"; | ||
9 | #endif /* LIBC_SCCS and not lint */ | ||
10 | |||
11 | #include <stdlib.h> | 7 | #include <stdlib.h> |
12 | #include <unistd.h> | 8 | #include <unistd.h> |
13 | 9 | ||
diff --git a/src/lib/libc/stdlib/_rand48.c b/src/lib/libc/stdlib/_rand48.c index fed7372f68..7c950f7cee 100644 --- a/src/lib/libc/stdlib/_rand48.c +++ b/src/lib/libc/stdlib/_rand48.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: _rand48.c,v 1.3 2005/08/08 08:05:36 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 1993 Martin Birgmeier | 3 | * Copyright (c) 1993 Martin Birgmeier |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -11,10 +12,6 @@ | |||
11 | * to anyone/anything when using this software. | 12 | * to anyone/anything when using this software. |
12 | */ | 13 | */ |
13 | 14 | ||
14 | #if defined(LIBC_SCCS) && !defined(lint) | ||
15 | static char rcsid[] = "$OpenBSD: _rand48.c,v 1.2 1996/08/19 08:33:19 tholo Exp $"; | ||
16 | #endif /* LIBC_SCCS and not lint */ | ||
17 | |||
18 | #include "rand48.h" | 15 | #include "rand48.h" |
19 | 16 | ||
20 | unsigned short __rand48_seed[3] = { | 17 | unsigned short __rand48_seed[3] = { |
diff --git a/src/lib/libc/stdlib/a64l.c b/src/lib/libc/stdlib/a64l.c index 518bdb64f9..5312929c6f 100644 --- a/src/lib/libc/stdlib/a64l.c +++ b/src/lib/libc/stdlib/a64l.c | |||
@@ -1,12 +1,9 @@ | |||
1 | /* $OpenBSD: a64l.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Written by J.T. Conklin <jtc@netbsd.org>. | 3 | * Written by J.T. Conklin <jtc@netbsd.org>. |
3 | * Public domain. | 4 | * Public domain. |
4 | */ | 5 | */ |
5 | 6 | ||
6 | #if defined(LIBC_SCCS) && !defined(lint) | ||
7 | static char *rcsid = "$OpenBSD: a64l.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; | ||
8 | #endif /* LIBC_SCCS and not lint */ | ||
9 | |||
10 | #include <errno.h> | 7 | #include <errno.h> |
11 | #include <stdlib.h> | 8 | #include <stdlib.h> |
12 | 9 | ||
diff --git a/src/lib/libc/stdlib/abort.c b/src/lib/libc/stdlib/abort.c index 2430c124f9..072a9fa8c1 100644 --- a/src/lib/libc/stdlib/abort.c +++ b/src/lib/libc/stdlib/abort.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: abort.c,v 1.14 2005/08/08 08:05:36 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 1985 Regents of the University of California. | 3 | * Copyright (c) 1985 Regents of the University of California. |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -27,10 +28,6 @@ | |||
27 | * SUCH DAMAGE. | 28 | * SUCH DAMAGE. |
28 | */ | 29 | */ |
29 | 30 | ||
30 | #if defined(LIBC_SCCS) && !defined(lint) | ||
31 | static char *rcsid = "$OpenBSD: abort.c,v 1.13 2004/01/20 19:35:17 millert Exp $"; | ||
32 | #endif /* LIBC_SCCS and not lint */ | ||
33 | |||
34 | #include <signal.h> | 31 | #include <signal.h> |
35 | #include <stdlib.h> | 32 | #include <stdlib.h> |
36 | #include <unistd.h> | 33 | #include <unistd.h> |
diff --git a/src/lib/libc/stdlib/abs.c b/src/lib/libc/stdlib/abs.c index a471ab3a1e..5d2fbae69f 100644 --- a/src/lib/libc/stdlib/abs.c +++ b/src/lib/libc/stdlib/abs.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: abs.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ | ||
1 | /*- | 2 | /*- |
2 | * Copyright (c) 1990 The Regents of the University of California. | 3 | * Copyright (c) 1990 The Regents of the University of California. |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -27,10 +28,6 @@ | |||
27 | * SUCH DAMAGE. | 28 | * SUCH DAMAGE. |
28 | */ | 29 | */ |
29 | 30 | ||
30 | #if defined(LIBC_SCCS) && !defined(lint) | ||
31 | static char *rcsid = "$OpenBSD: abs.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; | ||
32 | #endif /* LIBC_SCCS and not lint */ | ||
33 | |||
34 | #include <stdlib.h> | 31 | #include <stdlib.h> |
35 | 32 | ||
36 | int | 33 | int |
diff --git a/src/lib/libc/stdlib/atexit.c b/src/lib/libc/stdlib/atexit.c index 0bffc05344..019b901575 100644 --- a/src/lib/libc/stdlib/atexit.c +++ b/src/lib/libc/stdlib/atexit.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: atexit.c,v 1.10 2005/08/08 08:05:36 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 2002 Daniel Hartmeier | 3 | * Copyright (c) 2002 Daniel Hartmeier |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -28,10 +29,6 @@ | |||
28 | * | 29 | * |
29 | */ | 30 | */ |
30 | 31 | ||
31 | #if defined(LIBC_SCCS) && !defined(lint) | ||
32 | static char *rcsid = "$OpenBSD: atexit.c,v 1.9 2005/06/17 21:38:59 deraadt Exp $"; | ||
33 | #endif /* LIBC_SCCS and not lint */ | ||
34 | |||
35 | #include <sys/types.h> | 32 | #include <sys/types.h> |
36 | #include <sys/mman.h> | 33 | #include <sys/mman.h> |
37 | #include <stdlib.h> | 34 | #include <stdlib.h> |
diff --git a/src/lib/libc/stdlib/atof.c b/src/lib/libc/stdlib/atof.c index 2724530231..d14b58b070 100644 --- a/src/lib/libc/stdlib/atof.c +++ b/src/lib/libc/stdlib/atof.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: atof.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 1988 The Regents of the University of California. | 3 | * Copyright (c) 1988 The Regents of the University of California. |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -27,10 +28,6 @@ | |||
27 | * SUCH DAMAGE. | 28 | * SUCH DAMAGE. |
28 | */ | 29 | */ |
29 | 30 | ||
30 | #if defined(LIBC_SCCS) && !defined(lint) | ||
31 | static char *rcsid = "$OpenBSD: atof.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; | ||
32 | #endif /* LIBC_SCCS and not lint */ | ||
33 | |||
34 | #include <stdlib.h> | 31 | #include <stdlib.h> |
35 | 32 | ||
36 | double | 33 | double |
diff --git a/src/lib/libc/stdlib/atoi.c b/src/lib/libc/stdlib/atoi.c index ea821ced3d..b0842678e2 100644 --- a/src/lib/libc/stdlib/atoi.c +++ b/src/lib/libc/stdlib/atoi.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: atoi.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 1988 Regents of the University of California. | 3 | * Copyright (c) 1988 Regents of the University of California. |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -27,10 +28,6 @@ | |||
27 | * SUCH DAMAGE. | 28 | * SUCH DAMAGE. |
28 | */ | 29 | */ |
29 | 30 | ||
30 | #if defined(LIBC_SCCS) && !defined(lint) | ||
31 | static char *rcsid = "$OpenBSD: atoi.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; | ||
32 | #endif /* LIBC_SCCS and not lint */ | ||
33 | |||
34 | #include <stdlib.h> | 31 | #include <stdlib.h> |
35 | 32 | ||
36 | int | 33 | int |
diff --git a/src/lib/libc/stdlib/atol.c b/src/lib/libc/stdlib/atol.c index 38236b556c..1970804401 100644 --- a/src/lib/libc/stdlib/atol.c +++ b/src/lib/libc/stdlib/atol.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: atol.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 1988 Regents of the University of California. | 3 | * Copyright (c) 1988 Regents of the University of California. |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -27,10 +28,6 @@ | |||
27 | * SUCH DAMAGE. | 28 | * SUCH DAMAGE. |
28 | */ | 29 | */ |
29 | 30 | ||
30 | #if defined(LIBC_SCCS) && !defined(lint) | ||
31 | static char *rcsid = "$OpenBSD: atol.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; | ||
32 | #endif /* LIBC_SCCS and not lint */ | ||
33 | |||
34 | #include <stdlib.h> | 31 | #include <stdlib.h> |
35 | 32 | ||
36 | long | 33 | long |
diff --git a/src/lib/libc/stdlib/atoll.c b/src/lib/libc/stdlib/atoll.c index 6786b62e1a..a65e682cfb 100644 --- a/src/lib/libc/stdlib/atoll.c +++ b/src/lib/libc/stdlib/atoll.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: atoll.c,v 1.3 2005/08/08 08:05:36 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 1988 Regents of the University of California. | 3 | * Copyright (c) 1988 Regents of the University of California. |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -27,10 +28,6 @@ | |||
27 | * SUCH DAMAGE. | 28 | * SUCH DAMAGE. |
28 | */ | 29 | */ |
29 | 30 | ||
30 | #if defined(LIBC_SCCS) && !defined(lint) | ||
31 | static char *rcsid = "$OpenBSD: atoll.c,v 1.2 2003/06/02 20:18:37 millert Exp $"; | ||
32 | #endif /* LIBC_SCCS and not lint */ | ||
33 | |||
34 | #include <stdlib.h> | 31 | #include <stdlib.h> |
35 | 32 | ||
36 | long long | 33 | long long |
diff --git a/src/lib/libc/stdlib/bsearch.c b/src/lib/libc/stdlib/bsearch.c index 109211da92..8193d27c60 100644 --- a/src/lib/libc/stdlib/bsearch.c +++ b/src/lib/libc/stdlib/bsearch.c | |||
@@ -27,10 +27,6 @@ | |||
27 | * SUCH DAMAGE. | 27 | * SUCH DAMAGE. |
28 | */ | 28 | */ |
29 | 29 | ||
30 | #if defined(LIBC_SCCS) && !defined(lint) | ||
31 | static char *rcsid = "$OpenBSD: bsearch.c,v 1.5 2005/03/30 18:51:49 pat Exp $"; | ||
32 | #endif /* LIBC_SCCS and not lint */ | ||
33 | |||
34 | #include <stdlib.h> | 30 | #include <stdlib.h> |
35 | 31 | ||
36 | /* | 32 | /* |
diff --git a/src/lib/libc/stdlib/calloc.c b/src/lib/libc/stdlib/calloc.c index 7aabed235f..7105141db8 100644 --- a/src/lib/libc/stdlib/calloc.c +++ b/src/lib/libc/stdlib/calloc.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: calloc.c,v 1.10 2005/08/08 08:05:36 espie Exp $ */ | ||
1 | /*- | 2 | /*- |
2 | * Copyright (c) 1990 The Regents of the University of California. | 3 | * Copyright (c) 1990 The Regents of the University of California. |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -27,10 +28,6 @@ | |||
27 | * SUCH DAMAGE. | 28 | * SUCH DAMAGE. |
28 | */ | 29 | */ |
29 | 30 | ||
30 | #if defined(LIBC_SCCS) && !defined(lint) | ||
31 | static char *rcsid = "$OpenBSD: calloc.c,v 1.9 2005/03/30 18:51:49 pat Exp $"; | ||
32 | #endif /* LIBC_SCCS and not lint */ | ||
33 | |||
34 | #include <stdlib.h> | 31 | #include <stdlib.h> |
35 | #include <string.h> | 32 | #include <string.h> |
36 | #include <limits.h> | 33 | #include <limits.h> |
diff --git a/src/lib/libc/stdlib/cfree.c b/src/lib/libc/stdlib/cfree.c index db1fa56039..373c7ff75d 100644 --- a/src/lib/libc/stdlib/cfree.c +++ b/src/lib/libc/stdlib/cfree.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cfree.c,v 1.4 2005/03/30 18:51:49 pat Exp $ */ | 1 | /* $OpenBSD: cfree.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 1996 SigmaSoft, Th. Lockert <tholo@sigmasoft.com> | 4 | * Copyright (c) 1996 SigmaSoft, Th. Lockert <tholo@sigmasoft.com> |
@@ -25,10 +25,6 @@ | |||
25 | * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | #if defined(LIBC_SCCS) && !defined(lint) | ||
29 | static char rcsid[] = "$OpenBSD: cfree.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; | ||
30 | #endif /* LIBC_SCCS and not lint */ | ||
31 | |||
32 | #include <sys/cdefs.h> | 28 | #include <sys/cdefs.h> |
33 | #include <stdlib.h> | 29 | #include <stdlib.h> |
34 | 30 | ||
diff --git a/src/lib/libc/stdlib/div.c b/src/lib/libc/stdlib/div.c index 32c53dff03..f7ac2db4b0 100644 --- a/src/lib/libc/stdlib/div.c +++ b/src/lib/libc/stdlib/div.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: div.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 1990 Regents of the University of California. | 3 | * Copyright (c) 1990 Regents of the University of California. |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -30,10 +31,6 @@ | |||
30 | * SUCH DAMAGE. | 31 | * SUCH DAMAGE. |
31 | */ | 32 | */ |
32 | 33 | ||
33 | #if defined(LIBC_SCCS) && !defined(lint) | ||
34 | static char *rcsid = "$OpenBSD: div.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; | ||
35 | #endif /* LIBC_SCCS and not lint */ | ||
36 | |||
37 | #include <stdlib.h> /* div_t */ | 34 | #include <stdlib.h> /* div_t */ |
38 | 35 | ||
39 | div_t | 36 | div_t |
diff --git a/src/lib/libc/stdlib/drand48.c b/src/lib/libc/stdlib/drand48.c index 02886d5b62..b6c046c831 100644 --- a/src/lib/libc/stdlib/drand48.c +++ b/src/lib/libc/stdlib/drand48.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: drand48.c,v 1.3 2005/08/08 08:05:36 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 1993 Martin Birgmeier | 3 | * Copyright (c) 1993 Martin Birgmeier |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -11,10 +12,6 @@ | |||
11 | * to anyone/anything when using this software. | 12 | * to anyone/anything when using this software. |
12 | */ | 13 | */ |
13 | 14 | ||
14 | #if defined(LIBC_SCCS) && !defined(lint) | ||
15 | static char rcsid[] = "$OpenBSD: drand48.c,v 1.2 1996/08/19 08:33:29 tholo Exp $"; | ||
16 | #endif /* LIBC_SCCS and not lint */ | ||
17 | |||
18 | #include "rand48.h" | 15 | #include "rand48.h" |
19 | 16 | ||
20 | extern unsigned short __rand48_seed[3]; | 17 | extern unsigned short __rand48_seed[3]; |
diff --git a/src/lib/libc/stdlib/ecvt.c b/src/lib/libc/stdlib/ecvt.c index 657c531808..9289b3bf8a 100644 --- a/src/lib/libc/stdlib/ecvt.c +++ b/src/lib/libc/stdlib/ecvt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ecvt.c,v 1.3 2003/06/17 21:56:24 millert Exp $ */ | 1 | /* $OpenBSD: ecvt.c,v 1.4 2005/08/08 08:05:36 espie Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 2002 Todd C. Miller <Todd.Miller@courtesan.com> | 4 | * Copyright (c) 2002 Todd C. Miller <Todd.Miller@courtesan.com> |
@@ -20,10 +20,6 @@ | |||
20 | * Materiel Command, USAF, under agreement number F39502-99-1-0512. | 20 | * Materiel Command, USAF, under agreement number F39502-99-1-0512. |
21 | */ | 21 | */ |
22 | 22 | ||
23 | #if defined(LIBC_SCCS) && !defined(lint) | ||
24 | static char rcsid[] = "$OpenBSD: ecvt.c,v 1.3 2003/06/17 21:56:24 millert Exp $"; | ||
25 | #endif /* LIBC_SCCS and not lint */ | ||
26 | |||
27 | #include <stdio.h> | 23 | #include <stdio.h> |
28 | #include <stdlib.h> | 24 | #include <stdlib.h> |
29 | #include <string.h> | 25 | #include <string.h> |
diff --git a/src/lib/libc/stdlib/erand48.c b/src/lib/libc/stdlib/erand48.c index b92dacffcc..2ffeaa6e71 100644 --- a/src/lib/libc/stdlib/erand48.c +++ b/src/lib/libc/stdlib/erand48.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: erand48.c,v 1.3 2005/08/08 08:05:36 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 1993 Martin Birgmeier | 3 | * Copyright (c) 1993 Martin Birgmeier |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -11,10 +12,6 @@ | |||
11 | * to anyone/anything when using this software. | 12 | * to anyone/anything when using this software. |
12 | */ | 13 | */ |
13 | 14 | ||
14 | #if defined(LIBC_SCCS) && !defined(lint) | ||
15 | static char rcsid[] = "$OpenBSD: erand48.c,v 1.2 1996/08/19 08:33:29 tholo Exp $"; | ||
16 | #endif /* LIBC_SCCS and not lint */ | ||
17 | |||
18 | #include "rand48.h" | 15 | #include "rand48.h" |
19 | 16 | ||
20 | double | 17 | double |
diff --git a/src/lib/libc/stdlib/exit.c b/src/lib/libc/stdlib/exit.c index a0960e83c4..90b7d5adc2 100644 --- a/src/lib/libc/stdlib/exit.c +++ b/src/lib/libc/stdlib/exit.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: exit.c,v 1.11 2005/08/08 08:05:36 espie Exp $ */ | ||
1 | /*- | 2 | /*- |
2 | * Copyright (c) 1990 The Regents of the University of California. | 3 | * Copyright (c) 1990 The Regents of the University of California. |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -27,10 +28,6 @@ | |||
27 | * SUCH DAMAGE. | 28 | * SUCH DAMAGE. |
28 | */ | 29 | */ |
29 | 30 | ||
30 | #if defined(LIBC_SCCS) && !defined(lint) | ||
31 | static char *rcsid = "$OpenBSD: exit.c,v 1.10 2005/03/30 18:51:49 pat Exp $"; | ||
32 | #endif /* LIBC_SCCS and not lint */ | ||
33 | |||
34 | #include <sys/types.h> | 31 | #include <sys/types.h> |
35 | #include <sys/mman.h> | 32 | #include <sys/mman.h> |
36 | #include <stdlib.h> | 33 | #include <stdlib.h> |
diff --git a/src/lib/libc/stdlib/gcvt.c b/src/lib/libc/stdlib/gcvt.c index 9fd664b346..849af60304 100644 --- a/src/lib/libc/stdlib/gcvt.c +++ b/src/lib/libc/stdlib/gcvt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: gcvt.c,v 1.5 2003/06/17 21:56:24 millert Exp $ */ | 1 | /* $OpenBSD: gcvt.c,v 1.6 2005/08/08 08:05:36 espie Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 2002, 2003 Todd C. Miller <Todd.Miller@courtesan.com> | 4 | * Copyright (c) 2002, 2003 Todd C. Miller <Todd.Miller@courtesan.com> |
@@ -20,10 +20,6 @@ | |||
20 | * Materiel Command, USAF, under agreement number F39502-99-1-0512. | 20 | * Materiel Command, USAF, under agreement number F39502-99-1-0512. |
21 | */ | 21 | */ |
22 | 22 | ||
23 | #if defined(LIBC_SCCS) && !defined(lint) | ||
24 | static char rcsid[] = "$OpenBSD: gcvt.c,v 1.5 2003/06/17 21:56:24 millert Exp $"; | ||
25 | #endif /* LIBC_SCCS and not lint */ | ||
26 | |||
27 | #include <stdio.h> | 23 | #include <stdio.h> |
28 | #include <stdlib.h> | 24 | #include <stdlib.h> |
29 | #include <string.h> | 25 | #include <string.h> |
diff --git a/src/lib/libc/stdlib/getenv.c b/src/lib/libc/stdlib/getenv.c index 7e4d6b91a9..72367b34e2 100644 --- a/src/lib/libc/stdlib/getenv.c +++ b/src/lib/libc/stdlib/getenv.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: getenv.c,v 1.8 2005/08/08 08:05:36 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 1987, 1993 | 3 | * Copyright (c) 1987, 1993 |
3 | * The Regents of the University of California. All rights reserved. | 4 | * The Regents of the University of California. All rights reserved. |
@@ -27,10 +28,6 @@ | |||
27 | * SUCH DAMAGE. | 28 | * SUCH DAMAGE. |
28 | */ | 29 | */ |
29 | 30 | ||
30 | #if defined(LIBC_SCCS) && !defined(lint) | ||
31 | static char *rcsid = "$OpenBSD: getenv.c,v 1.7 2005/03/30 18:51:49 pat Exp $"; | ||
32 | #endif /* LIBC_SCCS and not lint */ | ||
33 | |||
34 | #include <stdlib.h> | 31 | #include <stdlib.h> |
35 | #include <string.h> | 32 | #include <string.h> |
36 | 33 | ||
diff --git a/src/lib/libc/stdlib/getopt_long.c b/src/lib/libc/stdlib/getopt_long.c index 6ddc8e2060..1bf7996998 100644 --- a/src/lib/libc/stdlib/getopt_long.c +++ b/src/lib/libc/stdlib/getopt_long.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: getopt_long.c,v 1.18 2005/03/30 18:51:49 pat Exp $ */ | 1 | /* $OpenBSD: getopt_long.c,v 1.19 2005/08/08 08:05:36 espie Exp $ */ |
2 | /* $NetBSD: getopt_long.c,v 1.15 2002/01/31 22:43:40 tv Exp $ */ | 2 | /* $NetBSD: getopt_long.c,v 1.15 2002/01/31 22:43:40 tv Exp $ */ |
3 | 3 | ||
4 | /* | 4 | /* |
@@ -56,10 +56,6 @@ | |||
56 | * POSSIBILITY OF SUCH DAMAGE. | 56 | * POSSIBILITY OF SUCH DAMAGE. |
57 | */ | 57 | */ |
58 | 58 | ||
59 | #if defined(LIBC_SCCS) && !defined(lint) | ||
60 | static char *rcsid = "$OpenBSD: getopt_long.c,v 1.18 2005/03/30 18:51:49 pat Exp $"; | ||
61 | #endif /* LIBC_SCCS and not lint */ | ||
62 | |||
63 | #include <err.h> | 59 | #include <err.h> |
64 | #include <errno.h> | 60 | #include <errno.h> |
65 | #include <getopt.h> | 61 | #include <getopt.h> |
diff --git a/src/lib/libc/stdlib/getsubopt.c b/src/lib/libc/stdlib/getsubopt.c index dfd7a50bd8..735c85ba8a 100644 --- a/src/lib/libc/stdlib/getsubopt.c +++ b/src/lib/libc/stdlib/getsubopt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: getsubopt.c,v 1.3 2005/03/30 18:51:49 pat Exp $ */ | 1 | /* $OpenBSD: getsubopt.c,v 1.4 2005/08/08 08:05:36 espie Exp $ */ |
2 | 2 | ||
3 | /*- | 3 | /*- |
4 | * Copyright (c) 1990, 1993 | 4 | * Copyright (c) 1990, 1993 |
@@ -29,14 +29,6 @@ | |||
29 | * SUCH DAMAGE. | 29 | * SUCH DAMAGE. |
30 | */ | 30 | */ |
31 | 31 | ||
32 | #ifndef lint | ||
33 | #if 0 | ||
34 | static char sccsid[] = "@(#)getsubopt.c 8.1 (Berkeley) 6/4/93"; | ||
35 | #else | ||
36 | static char rcsid[] = "$OpenBSD: getsubopt.c,v 1.3 2005/03/30 18:51:49 pat Exp $"; | ||
37 | #endif | ||
38 | #endif /* not lint */ | ||
39 | |||
40 | #include <unistd.h> | 32 | #include <unistd.h> |
41 | #include <stdlib.h> | 33 | #include <stdlib.h> |
42 | #include <string.h> | 34 | #include <string.h> |
diff --git a/src/lib/libc/stdlib/hcreate.c b/src/lib/libc/stdlib/hcreate.c index 14e6fa41f2..e9b5ceed11 100644 --- a/src/lib/libc/stdlib/hcreate.c +++ b/src/lib/libc/stdlib/hcreate.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: hcreate.c,v 1.1 2004/06/24 04:43:33 millert Exp $ */ | 1 | /* $OpenBSD: hcreate.c,v 1.2 2005/08/08 08:05:36 espie Exp $ */ |
2 | /* $NetBSD: hcreate.c,v 1.5 2004/04/23 02:48:12 simonb Exp $ */ | 2 | /* $NetBSD: hcreate.c,v 1.5 2004/04/23 02:48:12 simonb Exp $ */ |
3 | 3 | ||
4 | /* | 4 | /* |
@@ -47,15 +47,6 @@ | |||
47 | * nobody had a copy in the office, so... | 47 | * nobody had a copy in the office, so... |
48 | */ | 48 | */ |
49 | 49 | ||
50 | #ifndef lint | ||
51 | static const char copyright[] = | ||
52 | "@(#) Copyright (c) 2001 Christopher G. Demetriou. All rights reserved.\n"; | ||
53 | #endif /* not lint */ | ||
54 | |||
55 | #ifndef lint | ||
56 | static const char rcsid[] = "$OpenBSD: hcreate.c,v 1.1 2004/06/24 04:43:33 millert Exp $"; | ||
57 | #endif /* not lint */ | ||
58 | |||
59 | #include "namespace.h" | 50 | #include "namespace.h" |
60 | #include <assert.h> | 51 | #include <assert.h> |
61 | #include <errno.h> | 52 | #include <errno.h> |
diff --git a/src/lib/libc/stdlib/heapsort.c b/src/lib/libc/stdlib/heapsort.c index dcc0c8baad..e6fb61ba2f 100644 --- a/src/lib/libc/stdlib/heapsort.c +++ b/src/lib/libc/stdlib/heapsort.c | |||
@@ -30,10 +30,6 @@ | |||
30 | * SUCH DAMAGE. | 30 | * SUCH DAMAGE. |
31 | */ | 31 | */ |
32 | 32 | ||
33 | #if defined(LIBC_SCCS) && !defined(lint) | ||
34 | static char *rcsid = "$OpenBSD: heapsort.c,v 1.7 2005/03/30 18:51:49 pat Exp $"; | ||
35 | #endif /* LIBC_SCCS and not lint */ | ||
36 | |||
37 | #include <sys/types.h> | 33 | #include <sys/types.h> |
38 | #include <errno.h> | 34 | #include <errno.h> |
39 | #include <stdlib.h> | 35 | #include <stdlib.h> |
diff --git a/src/lib/libc/stdlib/insque.c b/src/lib/libc/stdlib/insque.c index 549246c71f..8724efec74 100644 --- a/src/lib/libc/stdlib/insque.c +++ b/src/lib/libc/stdlib/insque.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: insque.c,v 1.1 2003/05/08 23:26:30 millert Exp $ */ | 1 | /* $OpenBSD: insque.c,v 1.2 2005/08/08 08:05:36 espie Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 1993 John Brezak | 4 | * Copyright (c) 1993 John Brezak |
@@ -28,10 +28,6 @@ | |||
28 | * POSSIBILITY OF SUCH DAMAGE. | 28 | * POSSIBILITY OF SUCH DAMAGE. |
29 | */ | 29 | */ |
30 | 30 | ||
31 | #if defined(LIBC_SCCS) && !defined(lint) | ||
32 | static char *rcsid = "$OpenBSD: insque.c,v 1.1 2003/05/08 23:26:30 millert Exp $"; | ||
33 | #endif /* LIBC_SCCS and not lint */ | ||
34 | |||
35 | #include <search.h> | 31 | #include <search.h> |
36 | 32 | ||
37 | struct qelem { | 33 | struct qelem { |
diff --git a/src/lib/libc/stdlib/jrand48.c b/src/lib/libc/stdlib/jrand48.c index 99cddb71e5..cb8c592750 100644 --- a/src/lib/libc/stdlib/jrand48.c +++ b/src/lib/libc/stdlib/jrand48.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: jrand48.c,v 1.3 2005/08/08 08:05:36 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 1993 Martin Birgmeier | 3 | * Copyright (c) 1993 Martin Birgmeier |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -11,10 +12,6 @@ | |||
11 | * to anyone/anything when using this software. | 12 | * to anyone/anything when using this software. |
12 | */ | 13 | */ |
13 | 14 | ||
14 | #if defined(LIBC_SCCS) && !defined(lint) | ||
15 | static char rcsid[] = "$OpenBSD: jrand48.c,v 1.2 1996/08/19 08:33:33 tholo Exp $"; | ||
16 | #endif /* LIBC_SCCS and not lint */ | ||
17 | |||
18 | #include "rand48.h" | 15 | #include "rand48.h" |
19 | 16 | ||
20 | long | 17 | long |
diff --git a/src/lib/libc/stdlib/l64a.c b/src/lib/libc/stdlib/l64a.c index 325b41b33b..4f33df37b2 100644 --- a/src/lib/libc/stdlib/l64a.c +++ b/src/lib/libc/stdlib/l64a.c | |||
@@ -1,12 +1,9 @@ | |||
1 | /* $OpenBSD: l64a.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Written by J.T. Conklin <jtc@netbsd.org>. | 3 | * Written by J.T. Conklin <jtc@netbsd.org>. |
3 | * Public domain. | 4 | * Public domain. |
4 | */ | 5 | */ |
5 | 6 | ||
6 | #if defined(LIBC_SCCS) && !defined(lint) | ||
7 | static char *rcsid = "$OpenBSD: l64a.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; | ||
8 | #endif /* LIBC_SCCS and not lint */ | ||
9 | |||
10 | #include <errno.h> | 7 | #include <errno.h> |
11 | #include <stdlib.h> | 8 | #include <stdlib.h> |
12 | 9 | ||
diff --git a/src/lib/libc/stdlib/labs.c b/src/lib/libc/stdlib/labs.c index 1dc8b0184a..ca60b9aba2 100644 --- a/src/lib/libc/stdlib/labs.c +++ b/src/lib/libc/stdlib/labs.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: labs.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ | ||
1 | /*- | 2 | /*- |
2 | * Copyright (c) 1990 The Regents of the University of California. | 3 | * Copyright (c) 1990 The Regents of the University of California. |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -27,10 +28,6 @@ | |||
27 | * SUCH DAMAGE. | 28 | * SUCH DAMAGE. |
28 | */ | 29 | */ |
29 | 30 | ||
30 | #if defined(LIBC_SCCS) && !defined(lint) | ||
31 | static char *rcsid = "$OpenBSD: labs.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; | ||
32 | #endif /* LIBC_SCCS and not lint */ | ||
33 | |||
34 | #include <stdlib.h> | 31 | #include <stdlib.h> |
35 | 32 | ||
36 | long | 33 | long |
diff --git a/src/lib/libc/stdlib/lcong48.c b/src/lib/libc/stdlib/lcong48.c index 44bd74e48a..2cf5c271ba 100644 --- a/src/lib/libc/stdlib/lcong48.c +++ b/src/lib/libc/stdlib/lcong48.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: lcong48.c,v 1.3 2005/08/08 08:05:36 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 1993 Martin Birgmeier | 3 | * Copyright (c) 1993 Martin Birgmeier |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -11,10 +12,6 @@ | |||
11 | * to anyone/anything when using this software. | 12 | * to anyone/anything when using this software. |
12 | */ | 13 | */ |
13 | 14 | ||
14 | #if defined(LIBC_SCCS) && !defined(lint) | ||
15 | static char rcsid[] = "$OpenBSD: lcong48.c,v 1.2 1996/08/19 08:33:35 tholo Exp $"; | ||
16 | #endif /* LIBC_SCCS and not lint */ | ||
17 | |||
18 | #include "rand48.h" | 15 | #include "rand48.h" |
19 | 16 | ||
20 | extern unsigned short __rand48_seed[3]; | 17 | extern unsigned short __rand48_seed[3]; |
diff --git a/src/lib/libc/stdlib/ldiv.c b/src/lib/libc/stdlib/ldiv.c index bbb539a68b..775065f525 100644 --- a/src/lib/libc/stdlib/ldiv.c +++ b/src/lib/libc/stdlib/ldiv.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: ldiv.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 1990 Regents of the University of California. | 3 | * Copyright (c) 1990 Regents of the University of California. |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -30,10 +31,6 @@ | |||
30 | * SUCH DAMAGE. | 31 | * SUCH DAMAGE. |
31 | */ | 32 | */ |
32 | 33 | ||
33 | #if defined(LIBC_SCCS) && !defined(lint) | ||
34 | static char *rcsid = "$OpenBSD: ldiv.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; | ||
35 | #endif /* LIBC_SCCS and not lint */ | ||
36 | |||
37 | #include <stdlib.h> /* ldiv_t */ | 34 | #include <stdlib.h> /* ldiv_t */ |
38 | 35 | ||
39 | ldiv_t | 36 | ldiv_t |
diff --git a/src/lib/libc/stdlib/llabs.c b/src/lib/libc/stdlib/llabs.c index 9611b5aefd..0a0ff784af 100644 --- a/src/lib/libc/stdlib/llabs.c +++ b/src/lib/libc/stdlib/llabs.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: llabs.c,v 1.1 2003/07/21 20:20:04 millert Exp $ */ | 1 | /* $OpenBSD: llabs.c,v 1.2 2005/08/08 08:05:36 espie Exp $ */ |
2 | 2 | ||
3 | /*- | 3 | /*- |
4 | * Copyright (c) 1990 The Regents of the University of California. | 4 | * Copyright (c) 1990 The Regents of the University of California. |
@@ -33,13 +33,10 @@ | |||
33 | * SUCH DAMAGE. | 33 | * SUCH DAMAGE. |
34 | */ | 34 | */ |
35 | 35 | ||
36 | #if defined(LIBC_SCCS) && !defined(lint) | ||
37 | static char *rcsid = "$OpenBSD: llabs.c,v 1.1 2003/07/21 20:20:04 millert Exp $"; | ||
38 | #endif /* LIBC_SCCS and not lint */ | ||
39 | |||
40 | #include <stdlib.h> | 36 | #include <stdlib.h> |
41 | 37 | ||
42 | long long llabs(long long j) | 38 | long long |
39 | llabs(long long j) | ||
43 | { | 40 | { |
44 | return (j < 0 ? -j : j); | 41 | return (j < 0 ? -j : j); |
45 | } | 42 | } |
diff --git a/src/lib/libc/stdlib/lrand48.c b/src/lib/libc/stdlib/lrand48.c index 6b7524a51b..21beb858ca 100644 --- a/src/lib/libc/stdlib/lrand48.c +++ b/src/lib/libc/stdlib/lrand48.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: lrand48.c,v 1.3 2005/08/08 08:05:36 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 1993 Martin Birgmeier | 3 | * Copyright (c) 1993 Martin Birgmeier |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -11,10 +12,6 @@ | |||
11 | * to anyone/anything when using this software. | 12 | * to anyone/anything when using this software. |
12 | */ | 13 | */ |
13 | 14 | ||
14 | #if defined(LIBC_SCCS) && !defined(lint) | ||
15 | static char rcsid[] = "$OpenBSD: lrand48.c,v 1.2 1996/08/19 08:33:36 tholo Exp $"; | ||
16 | #endif /* LIBC_SCCS and not lint */ | ||
17 | |||
18 | #include "rand48.h" | 15 | #include "rand48.h" |
19 | 16 | ||
20 | extern unsigned short __rand48_seed[3]; | 17 | extern unsigned short __rand48_seed[3]; |
diff --git a/src/lib/libc/stdlib/malloc.c b/src/lib/libc/stdlib/malloc.c index 5a328b0eb0..65675456ec 100644 --- a/src/lib/libc/stdlib/malloc.c +++ b/src/lib/libc/stdlib/malloc.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: malloc.c,v 1.76 2005/08/08 08:05:36 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * ---------------------------------------------------------------------------- | 3 | * ---------------------------------------------------------------------------- |
3 | * "THE BEER-WARE LICENSE" (Revision 42): | 4 | * "THE BEER-WARE LICENSE" (Revision 42): |
@@ -7,10 +8,6 @@ | |||
7 | * ---------------------------------------------------------------------------- | 8 | * ---------------------------------------------------------------------------- |
8 | */ | 9 | */ |
9 | 10 | ||
10 | #if defined(LIBC_SCCS) && !defined(lint) | ||
11 | static char rcsid[] = "$OpenBSD: malloc.c,v 1.75 2005/07/07 05:28:53 tdeval Exp $"; | ||
12 | #endif /* LIBC_SCCS and not lint */ | ||
13 | |||
14 | /* | 11 | /* |
15 | * Defining MALLOC_EXTRA_SANITY will enable extra checks which are | 12 | * Defining MALLOC_EXTRA_SANITY will enable extra checks which are |
16 | * related to internal conditions and consistency in malloc.c. This has | 13 | * related to internal conditions and consistency in malloc.c. This has |
diff --git a/src/lib/libc/stdlib/merge.c b/src/lib/libc/stdlib/merge.c index b193ae345c..623f652134 100644 --- a/src/lib/libc/stdlib/merge.c +++ b/src/lib/libc/stdlib/merge.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: merge.c,v 1.8 2005/08/08 08:05:37 espie Exp $ */ | ||
1 | /*- | 2 | /*- |
2 | * Copyright (c) 1992, 1993 | 3 | * Copyright (c) 1992, 1993 |
3 | * The Regents of the University of California. All rights reserved. | 4 | * The Regents of the University of California. All rights reserved. |
@@ -30,10 +31,6 @@ | |||
30 | * SUCH DAMAGE. | 31 | * SUCH DAMAGE. |
31 | */ | 32 | */ |
32 | 33 | ||
33 | #if defined(LIBC_SCCS) && !defined(lint) | ||
34 | static char *rcsid = "$OpenBSD: merge.c,v 1.7 2005/03/30 18:51:49 pat Exp $"; | ||
35 | #endif /* LIBC_SCCS and not lint */ | ||
36 | |||
37 | /* | 34 | /* |
38 | * Hybrid exponential search/linear search merge sort with hybrid | 35 | * Hybrid exponential search/linear search merge sort with hybrid |
39 | * natural/pairwise first pass. Requires about .3% more comparisons | 36 | * natural/pairwise first pass. Requires about .3% more comparisons |
diff --git a/src/lib/libc/stdlib/mrand48.c b/src/lib/libc/stdlib/mrand48.c index cd34260b5c..977264aba5 100644 --- a/src/lib/libc/stdlib/mrand48.c +++ b/src/lib/libc/stdlib/mrand48.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: mrand48.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 1993 Martin Birgmeier | 3 | * Copyright (c) 1993 Martin Birgmeier |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -11,10 +12,6 @@ | |||
11 | * to anyone/anything when using this software. | 12 | * to anyone/anything when using this software. |
12 | */ | 13 | */ |
13 | 14 | ||
14 | #if defined(LIBC_SCCS) && !defined(lint) | ||
15 | static char rcsid[] = "$OpenBSD: mrand48.c,v 1.2 1996/08/19 08:33:39 tholo Exp $"; | ||
16 | #endif /* LIBC_SCCS and not lint */ | ||
17 | |||
18 | #include "rand48.h" | 15 | #include "rand48.h" |
19 | 16 | ||
20 | extern unsigned short __rand48_seed[3]; | 17 | extern unsigned short __rand48_seed[3]; |
diff --git a/src/lib/libc/stdlib/multibyte.c b/src/lib/libc/stdlib/multibyte.c deleted file mode 100644 index ba878b8fdc..0000000000 --- a/src/lib/libc/stdlib/multibyte.c +++ /dev/null | |||
@@ -1,120 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (c) 1991 The Regents of the University of California. | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions | ||
7 | * are met: | ||
8 | * 1. Redistributions of source code must retain the above copyright | ||
9 | * notice, this list of conditions and the following disclaimer. | ||
10 | * 2. Redistributions in binary form must reproduce the above copyright | ||
11 | * notice, this list of conditions and the following disclaimer in the | ||
12 | * documentation and/or other materials provided with the distribution. | ||
13 | * 3. Neither the name of the University nor the names of its contributors | ||
14 | * may be used to endorse or promote products derived from this software | ||
15 | * without specific prior written permission. | ||
16 | * | ||
17 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND | ||
18 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
19 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
20 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | ||
21 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
22 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
23 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
24 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
25 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
26 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
27 | * SUCH DAMAGE. | ||
28 | */ | ||
29 | |||
30 | #if defined(LIBC_SCCS) && !defined(lint) | ||
31 | static char *rcsid = "$OpenBSD: multibyte.c,v 1.4 2003/06/02 20:18:38 millert Exp $"; | ||
32 | #endif /* LIBC_SCCS and not lint */ | ||
33 | |||
34 | #include <stdlib.h> | ||
35 | |||
36 | /* | ||
37 | * Stub multibyte character functions. | ||
38 | * This cheezy implementation is fixed to the native single-byte | ||
39 | * character set. | ||
40 | */ | ||
41 | |||
42 | int | ||
43 | mblen(s, n) | ||
44 | const char *s; | ||
45 | size_t n; | ||
46 | { | ||
47 | if (s == NULL || *s == '\0') | ||
48 | return 0; | ||
49 | if (n == 0) | ||
50 | return -1; | ||
51 | return 1; | ||
52 | } | ||
53 | |||
54 | /*ARGSUSED*/ | ||
55 | int | ||
56 | mbtowc(pwc, s, n) | ||
57 | wchar_t *pwc; | ||
58 | const char *s; | ||
59 | size_t n; | ||
60 | { | ||
61 | if (s == NULL) | ||
62 | return 0; | ||
63 | if (n == 0) | ||
64 | return -1; | ||
65 | if (pwc) | ||
66 | *pwc = (wchar_t) *s; | ||
67 | return (*s != '\0'); | ||
68 | } | ||
69 | |||
70 | /*ARGSUSED*/ | ||
71 | int | ||
72 | wctomb(char *s, wchar_t wchar) | ||
73 | { | ||
74 | if (s == NULL) | ||
75 | return 0; | ||
76 | |||
77 | *s = (char) wchar; | ||
78 | return 1; | ||
79 | } | ||
80 | |||
81 | /*ARGSUSED*/ | ||
82 | size_t | ||
83 | mbstowcs(pwcs, s, n) | ||
84 | wchar_t *pwcs; | ||
85 | const char *s; | ||
86 | size_t n; | ||
87 | { | ||
88 | int count = 0; | ||
89 | |||
90 | if (n != 0) { | ||
91 | do { | ||
92 | if ((*pwcs++ = (wchar_t) *s++) == 0) | ||
93 | break; | ||
94 | count++; | ||
95 | } while (--n != 0); | ||
96 | } | ||
97 | |||
98 | return count; | ||
99 | } | ||
100 | |||
101 | /*ARGSUSED*/ | ||
102 | size_t | ||
103 | wcstombs(s, pwcs, n) | ||
104 | char *s; | ||
105 | const wchar_t *pwcs; | ||
106 | size_t n; | ||
107 | { | ||
108 | int count = 0; | ||
109 | |||
110 | if (n != 0) { | ||
111 | do { | ||
112 | if ((*s++ = (char) *pwcs++) == 0) | ||
113 | break; | ||
114 | count++; | ||
115 | } while (--n != 0); | ||
116 | } | ||
117 | |||
118 | return count; | ||
119 | } | ||
120 | |||
diff --git a/src/lib/libc/stdlib/nrand48.c b/src/lib/libc/stdlib/nrand48.c index b1ec2cebb1..f1f548c3af 100644 --- a/src/lib/libc/stdlib/nrand48.c +++ b/src/lib/libc/stdlib/nrand48.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: nrand48.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 1993 Martin Birgmeier | 3 | * Copyright (c) 1993 Martin Birgmeier |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -11,10 +12,6 @@ | |||
11 | * to anyone/anything when using this software. | 12 | * to anyone/anything when using this software. |
12 | */ | 13 | */ |
13 | 14 | ||
14 | #if defined(LIBC_SCCS) && !defined(lint) | ||
15 | static char rcsid[] = "$OpenBSD: nrand48.c,v 1.2 1996/08/19 08:33:40 tholo Exp $"; | ||
16 | #endif /* LIBC_SCCS and not lint */ | ||
17 | |||
18 | #include "rand48.h" | 15 | #include "rand48.h" |
19 | 16 | ||
20 | long | 17 | long |
diff --git a/src/lib/libc/stdlib/putenv.c b/src/lib/libc/stdlib/putenv.c index 231982bf87..54482f6a14 100644 --- a/src/lib/libc/stdlib/putenv.c +++ b/src/lib/libc/stdlib/putenv.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: putenv.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */ | ||
1 | /*- | 2 | /*- |
2 | * Copyright (c) 1988, 1993 | 3 | * Copyright (c) 1988, 1993 |
3 | * The Regents of the University of California. All rights reserved. | 4 | * The Regents of the University of California. All rights reserved. |
@@ -27,10 +28,6 @@ | |||
27 | * SUCH DAMAGE. | 28 | * SUCH DAMAGE. |
28 | */ | 29 | */ |
29 | 30 | ||
30 | #if defined(LIBC_SCCS) && !defined(lint) | ||
31 | static char *rcsid = "$OpenBSD: putenv.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; | ||
32 | #endif /* LIBC_SCCS and not lint */ | ||
33 | |||
34 | #include <stdlib.h> | 31 | #include <stdlib.h> |
35 | #include <string.h> | 32 | #include <string.h> |
36 | 33 | ||
diff --git a/src/lib/libc/stdlib/qabs.c b/src/lib/libc/stdlib/qabs.c index 4c561b3351..656b93c822 100644 --- a/src/lib/libc/stdlib/qabs.c +++ b/src/lib/libc/stdlib/qabs.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: qabs.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */ | ||
1 | /*- | 2 | /*- |
2 | * Copyright (c) 1990 The Regents of the University of California. | 3 | * Copyright (c) 1990 The Regents of the University of California. |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -27,10 +28,6 @@ | |||
27 | * SUCH DAMAGE. | 28 | * SUCH DAMAGE. |
28 | */ | 29 | */ |
29 | 30 | ||
30 | #if defined(LIBC_SCCS) && !defined(lint) | ||
31 | static char *rcsid = "$OpenBSD: qabs.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; | ||
32 | #endif /* LIBC_SCCS and not lint */ | ||
33 | |||
34 | #include <stdlib.h> | 31 | #include <stdlib.h> |
35 | 32 | ||
36 | quad_t | 33 | quad_t |
diff --git a/src/lib/libc/stdlib/qdiv.c b/src/lib/libc/stdlib/qdiv.c index 8147ee89a6..f3db0915ed 100644 --- a/src/lib/libc/stdlib/qdiv.c +++ b/src/lib/libc/stdlib/qdiv.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: qdiv.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 1990 Regents of the University of California. | 3 | * Copyright (c) 1990 Regents of the University of California. |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -30,10 +31,6 @@ | |||
30 | * SUCH DAMAGE. | 31 | * SUCH DAMAGE. |
31 | */ | 32 | */ |
32 | 33 | ||
33 | #if defined(LIBC_SCCS) && !defined(lint) | ||
34 | static char *rcsid = "$OpenBSD: qdiv.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; | ||
35 | #endif /* LIBC_SCCS and not lint */ | ||
36 | |||
37 | #include <stdlib.h> /* qdiv_t */ | 34 | #include <stdlib.h> /* qdiv_t */ |
38 | 35 | ||
39 | qdiv_t | 36 | qdiv_t |
diff --git a/src/lib/libc/stdlib/qsort.c b/src/lib/libc/stdlib/qsort.c index 154c51a86c..bb4a9a11f2 100644 --- a/src/lib/libc/stdlib/qsort.c +++ b/src/lib/libc/stdlib/qsort.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: qsort.c,v 1.10 2005/08/08 08:05:37 espie Exp $ */ | ||
1 | /*- | 2 | /*- |
2 | * Copyright (c) 1992, 1993 | 3 | * Copyright (c) 1992, 1993 |
3 | * The Regents of the University of California. All rights reserved. | 4 | * The Regents of the University of California. All rights reserved. |
@@ -27,10 +28,6 @@ | |||
27 | * SUCH DAMAGE. | 28 | * SUCH DAMAGE. |
28 | */ | 29 | */ |
29 | 30 | ||
30 | #if defined(LIBC_SCCS) && !defined(lint) | ||
31 | static char *rcsid = "$OpenBSD: qsort.c,v 1.9 2005/03/30 18:51:49 pat Exp $"; | ||
32 | #endif /* LIBC_SCCS and not lint */ | ||
33 | |||
34 | #include <sys/types.h> | 31 | #include <sys/types.h> |
35 | #include <stdlib.h> | 32 | #include <stdlib.h> |
36 | 33 | ||
diff --git a/src/lib/libc/stdlib/radixsort.c b/src/lib/libc/stdlib/radixsort.c index 96392ea73a..0b2ff27044 100644 --- a/src/lib/libc/stdlib/radixsort.c +++ b/src/lib/libc/stdlib/radixsort.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: radixsort.c,v 1.8 2005/08/08 08:05:37 espie Exp $ */ | ||
1 | /*- | 2 | /*- |
2 | * Copyright (c) 1990, 1993 | 3 | * Copyright (c) 1990, 1993 |
3 | * The Regents of the University of California. All rights reserved. | 4 | * The Regents of the University of California. All rights reserved. |
@@ -30,10 +31,6 @@ | |||
30 | * SUCH DAMAGE. | 31 | * SUCH DAMAGE. |
31 | */ | 32 | */ |
32 | 33 | ||
33 | #if defined(LIBC_SCCS) && !defined(lint) | ||
34 | static char *rcsid = "$OpenBSD: radixsort.c,v 1.7 2005/03/30 18:51:49 pat Exp $"; | ||
35 | #endif /* LIBC_SCCS and not lint */ | ||
36 | |||
37 | /* | 34 | /* |
38 | * Radixsort routines. | 35 | * Radixsort routines. |
39 | * | 36 | * |
diff --git a/src/lib/libc/stdlib/rand.c b/src/lib/libc/stdlib/rand.c index 6b27ad46d3..0f9c100807 100644 --- a/src/lib/libc/stdlib/rand.c +++ b/src/lib/libc/stdlib/rand.c | |||
@@ -27,10 +27,6 @@ | |||
27 | * SUCH DAMAGE. | 27 | * SUCH DAMAGE. |
28 | */ | 28 | */ |
29 | 29 | ||
30 | #if defined(LIBC_SCCS) && !defined(lint) | ||
31 | static char *rcsid = "$OpenBSD: rand.c,v 1.8 2005/03/30 18:51:49 pat Exp $"; | ||
32 | #endif /* LIBC_SCCS and not lint */ | ||
33 | |||
34 | #include <sys/types.h> | 30 | #include <sys/types.h> |
35 | #include <stdlib.h> | 31 | #include <stdlib.h> |
36 | 32 | ||
diff --git a/src/lib/libc/stdlib/random.c b/src/lib/libc/stdlib/random.c index 4ca8735e75..565542ecdb 100644 --- a/src/lib/libc/stdlib/random.c +++ b/src/lib/libc/stdlib/random.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: random.c,v 1.14 2005/08/08 08:05:37 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 1983 Regents of the University of California. | 3 | * Copyright (c) 1983 Regents of the University of California. |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -27,10 +28,6 @@ | |||
27 | * SUCH DAMAGE. | 28 | * SUCH DAMAGE. |
28 | */ | 29 | */ |
29 | 30 | ||
30 | #if defined(LIBC_SCCS) && !defined(lint) | ||
31 | static char *rcsid = "$OpenBSD: random.c,v 1.13 2005/03/30 18:51:49 pat Exp $"; | ||
32 | #endif /* LIBC_SCCS and not lint */ | ||
33 | |||
34 | #include <sys/param.h> | 31 | #include <sys/param.h> |
35 | #include <sys/sysctl.h> | 32 | #include <sys/sysctl.h> |
36 | #include <sys/time.h> | 33 | #include <sys/time.h> |
diff --git a/src/lib/libc/stdlib/realpath.c b/src/lib/libc/stdlib/realpath.c index 62e06b00be..4cb847b313 100644 --- a/src/lib/libc/stdlib/realpath.c +++ b/src/lib/libc/stdlib/realpath.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: realpath.c,v 1.13 2005/08/08 08:05:37 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 2003 Constantin S. Svintsoff <kostik@iclub.nsu.ru> | 3 | * Copyright (c) 2003 Constantin S. Svintsoff <kostik@iclub.nsu.ru> |
3 | * | 4 | * |
@@ -26,15 +27,6 @@ | |||
26 | * SUCH DAMAGE. | 27 | * SUCH DAMAGE. |
27 | */ | 28 | */ |
28 | 29 | ||
29 | #if 0 | ||
30 | #include <sys/cdefs.h> | ||
31 | __FBSDID("$FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/lib/libc/stdlib/realpath.c,v 1.9.2.1 2003/05/22 17:11:44 fjoe Exp $"); | ||
32 | #endif | ||
33 | |||
34 | #if defined(LIBC_SCCS) && !defined(lint) | ||
35 | static char *rcsid = "$OpenBSD: realpath.c,v 1.12 2005/03/29 19:34:14 brad Exp $"; | ||
36 | #endif /* LIBC_SCCS and not lint */ | ||
37 | |||
38 | #include <sys/param.h> | 30 | #include <sys/param.h> |
39 | #include <sys/stat.h> | 31 | #include <sys/stat.h> |
40 | 32 | ||
diff --git a/src/lib/libc/stdlib/remque.c b/src/lib/libc/stdlib/remque.c index f4c5769a8c..ae249ae053 100644 --- a/src/lib/libc/stdlib/remque.c +++ b/src/lib/libc/stdlib/remque.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: remque.c,v 1.1 2003/05/08 23:26:30 millert Exp $ */ | 1 | /* $OpenBSD: remque.c,v 1.2 2005/08/08 08:05:37 espie Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 1993 John Brezak | 4 | * Copyright (c) 1993 John Brezak |
@@ -28,10 +28,6 @@ | |||
28 | * POSSIBILITY OF SUCH DAMAGE. | 28 | * POSSIBILITY OF SUCH DAMAGE. |
29 | */ | 29 | */ |
30 | 30 | ||
31 | #if defined(LIBC_SCCS) && !defined(lint) | ||
32 | static char *rcsid = "$OpenBSD: remque.c,v 1.1 2003/05/08 23:26:30 millert Exp $"; | ||
33 | #endif /* LIBC_SCCS and not lint */ | ||
34 | |||
35 | #include <search.h> | 31 | #include <search.h> |
36 | 32 | ||
37 | struct qelem { | 33 | struct qelem { |
diff --git a/src/lib/libc/stdlib/seed48.c b/src/lib/libc/stdlib/seed48.c index c4dcd0ead8..583262f2d5 100644 --- a/src/lib/libc/stdlib/seed48.c +++ b/src/lib/libc/stdlib/seed48.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: seed48.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 1993 Martin Birgmeier | 3 | * Copyright (c) 1993 Martin Birgmeier |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -11,10 +12,6 @@ | |||
11 | * to anyone/anything when using this software. | 12 | * to anyone/anything when using this software. |
12 | */ | 13 | */ |
13 | 14 | ||
14 | #if defined(LIBC_SCCS) && !defined(lint) | ||
15 | static char rcsid[] = "$OpenBSD: seed48.c,v 1.2 1996/08/19 08:33:48 tholo Exp $"; | ||
16 | #endif /* LIBC_SCCS and not lint */ | ||
17 | |||
18 | #include "rand48.h" | 15 | #include "rand48.h" |
19 | 16 | ||
20 | extern unsigned short __rand48_seed[3]; | 17 | extern unsigned short __rand48_seed[3]; |
diff --git a/src/lib/libc/stdlib/setenv.c b/src/lib/libc/stdlib/setenv.c index ce0d3f9699..36540ebb0c 100644 --- a/src/lib/libc/stdlib/setenv.c +++ b/src/lib/libc/stdlib/setenv.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: setenv.c,v 1.9 2005/08/08 08:05:37 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 1987 Regents of the University of California. | 3 | * Copyright (c) 1987 Regents of the University of California. |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -27,10 +28,6 @@ | |||
27 | * SUCH DAMAGE. | 28 | * SUCH DAMAGE. |
28 | */ | 29 | */ |
29 | 30 | ||
30 | #if defined(LIBC_SCCS) && !defined(lint) | ||
31 | static char *rcsid = "$OpenBSD: setenv.c,v 1.8 2005/03/30 18:51:49 pat Exp $"; | ||
32 | #endif /* LIBC_SCCS and not lint */ | ||
33 | |||
34 | #include <stdlib.h> | 31 | #include <stdlib.h> |
35 | #include <string.h> | 32 | #include <string.h> |
36 | 33 | ||
diff --git a/src/lib/libc/stdlib/srand48.c b/src/lib/libc/stdlib/srand48.c index fcff8a172e..f76b6cca86 100644 --- a/src/lib/libc/stdlib/srand48.c +++ b/src/lib/libc/stdlib/srand48.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: srand48.c,v 1.3 2005/08/08 08:05:37 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 1993 Martin Birgmeier | 3 | * Copyright (c) 1993 Martin Birgmeier |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -11,10 +12,6 @@ | |||
11 | * to anyone/anything when using this software. | 12 | * to anyone/anything when using this software. |
12 | */ | 13 | */ |
13 | 14 | ||
14 | #if defined(LIBC_SCCS) && !defined(lint) | ||
15 | static char rcsid[] = "$OpenBSD: srand48.c,v 1.2 1996/08/19 08:33:49 tholo Exp $"; | ||
16 | #endif /* LIBC_SCCS and not lint */ | ||
17 | |||
18 | #include "rand48.h" | 15 | #include "rand48.h" |
19 | 16 | ||
20 | extern unsigned short __rand48_seed[3]; | 17 | extern unsigned short __rand48_seed[3]; |
diff --git a/src/lib/libc/stdlib/strtod.c b/src/lib/libc/stdlib/strtod.c index 94eca88659..2f0de36d90 100644 --- a/src/lib/libc/stdlib/strtod.c +++ b/src/lib/libc/stdlib/strtod.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: strtod.c,v 1.21 2005/08/08 08:05:37 espie Exp $ */ | ||
1 | /**************************************************************** | 2 | /**************************************************************** |
2 | * | 3 | * |
3 | * The author of this software is David M. Gay. | 4 | * The author of this software is David M. Gay. |
@@ -88,10 +89,6 @@ | |||
88 | * directly -- and assumed always to succeed. | 89 | * directly -- and assumed always to succeed. |
89 | */ | 90 | */ |
90 | 91 | ||
91 | #if defined(LIBC_SCCS) && !defined(lint) | ||
92 | static char *rcsid = "$OpenBSD: strtod.c,v 1.20 2005/03/30 18:51:49 pat Exp $"; | ||
93 | #endif /* LIBC_SCCS and not lint */ | ||
94 | |||
95 | #if defined(__m68k__) || defined(__sparc__) || defined(__i386__) || \ | 92 | #if defined(__m68k__) || defined(__sparc__) || defined(__i386__) || \ |
96 | defined(__mips__) || defined(__ns32k__) || defined(__alpha__) || \ | 93 | defined(__mips__) || defined(__ns32k__) || defined(__alpha__) || \ |
97 | defined(__powerpc__) || defined(__m88k__) || defined(__hppa__) || \ | 94 | defined(__powerpc__) || defined(__m88k__) || defined(__hppa__) || \ |
diff --git a/src/lib/libc/stdlib/strtol.c b/src/lib/libc/stdlib/strtol.c index 9692bb6b07..5a244766db 100644 --- a/src/lib/libc/stdlib/strtol.c +++ b/src/lib/libc/stdlib/strtol.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: strtol.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */ | ||
1 | /*- | 2 | /*- |
2 | * Copyright (c) 1990 The Regents of the University of California. | 3 | * Copyright (c) 1990 The Regents of the University of California. |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -27,10 +28,6 @@ | |||
27 | * SUCH DAMAGE. | 28 | * SUCH DAMAGE. |
28 | */ | 29 | */ |
29 | 30 | ||
30 | #if defined(LIBC_SCCS) && !defined(lint) | ||
31 | static char *rcsid = "$OpenBSD: strtol.c,v 1.6 2005/03/30 18:51:49 pat Exp $"; | ||
32 | #endif /* LIBC_SCCS and not lint */ | ||
33 | |||
34 | #include <ctype.h> | 31 | #include <ctype.h> |
35 | #include <errno.h> | 32 | #include <errno.h> |
36 | #include <limits.h> | 33 | #include <limits.h> |
diff --git a/src/lib/libc/stdlib/strtoll.c b/src/lib/libc/stdlib/strtoll.c index fa4d30ef5a..b9ffc3d47a 100644 --- a/src/lib/libc/stdlib/strtoll.c +++ b/src/lib/libc/stdlib/strtoll.c | |||
@@ -27,10 +27,6 @@ | |||
27 | * SUCH DAMAGE. | 27 | * SUCH DAMAGE. |
28 | */ | 28 | */ |
29 | 29 | ||
30 | #if defined(LIBC_SCCS) && !defined(lint) | ||
31 | static const char rcsid[] = "$OpenBSD: strtoll.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; | ||
32 | #endif /* LIBC_SCCS and not lint */ | ||
33 | |||
34 | #include <sys/types.h> | 30 | #include <sys/types.h> |
35 | 31 | ||
36 | #include <ctype.h> | 32 | #include <ctype.h> |
diff --git a/src/lib/libc/stdlib/strtoul.c b/src/lib/libc/stdlib/strtoul.c index 1faa0abbd0..d7dddab778 100644 --- a/src/lib/libc/stdlib/strtoul.c +++ b/src/lib/libc/stdlib/strtoul.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: strtoul.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 1990 Regents of the University of California. | 3 | * Copyright (c) 1990 Regents of the University of California. |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -27,10 +28,6 @@ | |||
27 | * SUCH DAMAGE. | 28 | * SUCH DAMAGE. |
28 | */ | 29 | */ |
29 | 30 | ||
30 | #if defined(LIBC_SCCS) && !defined(lint) | ||
31 | static char *rcsid = "$OpenBSD: strtoul.c,v 1.6 2005/03/30 18:51:49 pat Exp $"; | ||
32 | #endif /* LIBC_SCCS and not lint */ | ||
33 | |||
34 | #include <ctype.h> | 31 | #include <ctype.h> |
35 | #include <errno.h> | 32 | #include <errno.h> |
36 | #include <limits.h> | 33 | #include <limits.h> |
diff --git a/src/lib/libc/stdlib/strtoull.c b/src/lib/libc/stdlib/strtoull.c index 5fa841fff7..37859776f9 100644 --- a/src/lib/libc/stdlib/strtoull.c +++ b/src/lib/libc/stdlib/strtoull.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: strtoull.c,v 1.5 2005/08/08 08:05:37 espie Exp $ */ | ||
1 | /*- | 2 | /*- |
2 | * Copyright (c) 1992 The Regents of the University of California. | 3 | * Copyright (c) 1992 The Regents of the University of California. |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -27,10 +28,6 @@ | |||
27 | * SUCH DAMAGE. | 28 | * SUCH DAMAGE. |
28 | */ | 29 | */ |
29 | 30 | ||
30 | #if defined(LIBC_SCCS) && !defined(lint) | ||
31 | static const char rcsid[] = "$OpenBSD: strtoull.c,v 1.4 2005/03/30 18:51:49 pat Exp $"; | ||
32 | #endif /* LIBC_SCCS and not lint */ | ||
33 | |||
34 | #include <sys/types.h> | 31 | #include <sys/types.h> |
35 | 32 | ||
36 | #include <ctype.h> | 33 | #include <ctype.h> |
diff --git a/src/lib/libc/stdlib/system.c b/src/lib/libc/stdlib/system.c index ebf5577674..14ddcae8d3 100644 --- a/src/lib/libc/stdlib/system.c +++ b/src/lib/libc/stdlib/system.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: system.c,v 1.8 2005/08/08 08:05:37 espie Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 1988 The Regents of the University of California. | 3 | * Copyright (c) 1988 The Regents of the University of California. |
3 | * All rights reserved. | 4 | * All rights reserved. |
@@ -27,10 +28,6 @@ | |||
27 | * SUCH DAMAGE. | 28 | * SUCH DAMAGE. |
28 | */ | 29 | */ |
29 | 30 | ||
30 | #if defined(LIBC_SCCS) && !defined(lint) | ||
31 | static char *rcsid = "$OpenBSD: system.c,v 1.7 2005/03/30 18:51:49 pat Exp $"; | ||
32 | #endif /* LIBC_SCCS and not lint */ | ||
33 | |||
34 | #include <sys/types.h> | 31 | #include <sys/types.h> |
35 | #include <sys/wait.h> | 32 | #include <sys/wait.h> |
36 | #include <signal.h> | 33 | #include <signal.h> |