summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1993-08-01 17:54:45 +0000
committermycroft <mycroft@NetBSD.org>1993-08-01 17:54:45 +0000
commite9d867ef5010fbab8d48045c13025636f5cd7479 (patch)
treed05864815761299c3ff4001b8ea7fef526e5273f /lib/libc/stdlib
parent55b7fa6d0b1423be9f9ec5d5c060fa5e9982861e (diff)
Add RCS identifiers.
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r--lib/libc/stdlib/abort.c3
-rw-r--r--lib/libc/stdlib/abs.c3
-rw-r--r--lib/libc/stdlib/atexit.c3
-rw-r--r--lib/libc/stdlib/atexit.h3
-rw-r--r--lib/libc/stdlib/atof.c3
-rw-r--r--lib/libc/stdlib/atoi.c3
-rw-r--r--lib/libc/stdlib/atol.c3
-rw-r--r--lib/libc/stdlib/bsearch.c3
-rw-r--r--lib/libc/stdlib/calloc.c3
-rw-r--r--lib/libc/stdlib/div.c3
-rw-r--r--lib/libc/stdlib/exit.c3
-rw-r--r--lib/libc/stdlib/getenv.c3
-rw-r--r--lib/libc/stdlib/getopt.c3
-rw-r--r--lib/libc/stdlib/heapsort.c3
-rw-r--r--lib/libc/stdlib/labs.c3
-rw-r--r--lib/libc/stdlib/ldiv.c3
-rw-r--r--lib/libc/stdlib/malloc.c3
-rw-r--r--lib/libc/stdlib/multibyte.c3
-rw-r--r--lib/libc/stdlib/putenv.c3
-rw-r--r--lib/libc/stdlib/qsort.c3
-rw-r--r--lib/libc/stdlib/radixsort.c3
-rw-r--r--lib/libc/stdlib/rand.c3
-rw-r--r--lib/libc/stdlib/random.c3
-rw-r--r--lib/libc/stdlib/setenv.c3
-rw-r--r--lib/libc/stdlib/strtod.c3
-rw-r--r--lib/libc/stdlib/strtol.c3
-rw-r--r--lib/libc/stdlib/strtoul.c3
-rw-r--r--lib/libc/stdlib/system.c3
28 files changed, 56 insertions, 28 deletions
diff --git a/lib/libc/stdlib/abort.c b/lib/libc/stdlib/abort.c
index b5393e9a710..a4a749b6cc7 100644
--- a/lib/libc/stdlib/abort.c
+++ b/lib/libc/stdlib/abort.c
@@ -32,7 +32,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)abort.c 5.11 (Berkeley) 2/23/91";
+/*static char sccsid[] = "from: @(#)abort.c 5.11 (Berkeley) 2/23/91";*/
+static char rcsid[] = "$Id: abort.c,v 1.2 1993/08/01 18:37:20 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/signal.h>
diff --git a/lib/libc/stdlib/abs.c b/lib/libc/stdlib/abs.c
index ebfd1a5f1ef..e985f519f49 100644
--- a/lib/libc/stdlib/abs.c
+++ b/lib/libc/stdlib/abs.c
@@ -32,7 +32,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)abs.c 5.2 (Berkeley) 5/17/90";
+/*static char sccsid[] = "from: @(#)abs.c 5.2 (Berkeley) 5/17/90";*/
+static char rcsid[] = "$Id: abs.c,v 1.2 1993/08/01 18:37:18 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h>
diff --git a/lib/libc/stdlib/atexit.c b/lib/libc/stdlib/atexit.c
index 06d1d6b9637..9c42609127d 100644
--- a/lib/libc/stdlib/atexit.c
+++ b/lib/libc/stdlib/atexit.c
@@ -35,7 +35,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)atexit.c 5.2 (Berkeley) 11/14/90";
+/*static char sccsid[] = "from: @(#)atexit.c 5.2 (Berkeley) 11/14/90";*/
+static char rcsid[] = "$Id: atexit.c,v 1.2 1993/08/01 18:37:17 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stddef.h>
diff --git a/lib/libc/stdlib/atexit.h b/lib/libc/stdlib/atexit.h
index 4ec9bb976d4..5b81905e4f4 100644
--- a/lib/libc/stdlib/atexit.h
+++ b/lib/libc/stdlib/atexit.h
@@ -30,7 +30,8 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * @(#)atexit.h 5.1 (Berkeley) 5/15/90
+ * from: @(#)atexit.h 5.1 (Berkeley) 5/15/90
+ * $Id: atexit.h,v 1.2 1993/08/01 18:37:20 mycroft Exp $
*/
/* must be at least 32 to guarantee ANSI conformance */
diff --git a/lib/libc/stdlib/atof.c b/lib/libc/stdlib/atof.c
index c3577abfa27..b78bd097d90 100644
--- a/lib/libc/stdlib/atof.c
+++ b/lib/libc/stdlib/atof.c
@@ -32,7 +32,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)atof.c 5.3 (Berkeley) 1/8/93";
+/*static char sccsid[] = "from: @(#)atof.c 5.3 (Berkeley) 1/8/93";*/
+static char rcsid[] = "$Id: atof.c,v 1.4 1993/08/01 18:37:16 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h>
diff --git a/lib/libc/stdlib/atoi.c b/lib/libc/stdlib/atoi.c
index c100c88bb04..3051408251a 100644
--- a/lib/libc/stdlib/atoi.c
+++ b/lib/libc/stdlib/atoi.c
@@ -32,7 +32,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)atoi.c 5.7 (Berkeley) 2/23/91";
+/*static char sccsid[] = "from: @(#)atoi.c 5.7 (Berkeley) 2/23/91";*/
+static char rcsid[] = "$Id: atoi.c,v 1.2 1993/08/01 18:37:16 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h>
diff --git a/lib/libc/stdlib/atol.c b/lib/libc/stdlib/atol.c
index 920302edb3c..12f26c92161 100644
--- a/lib/libc/stdlib/atol.c
+++ b/lib/libc/stdlib/atol.c
@@ -32,7 +32,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)atol.c 5.7 (Berkeley) 2/23/91";
+/*static char sccsid[] = "from: @(#)atol.c 5.7 (Berkeley) 2/23/91";*/
+static char rcsid[] = "$Id: atol.c,v 1.2 1993/08/01 18:37:15 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stddef.h>
diff --git a/lib/libc/stdlib/bsearch.c b/lib/libc/stdlib/bsearch.c
index ca7ffe62879..8eddb0a762f 100644
--- a/lib/libc/stdlib/bsearch.c
+++ b/lib/libc/stdlib/bsearch.c
@@ -32,7 +32,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)bsearch.c 5.4 (Berkeley) 2/23/91";
+/*static char sccsid[] = "from: @(#)bsearch.c 5.4 (Berkeley) 2/23/91";*/
+static char rcsid[] = "$Id: bsearch.c,v 1.2 1993/08/01 18:37:14 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stddef.h> /* size_t */
diff --git a/lib/libc/stdlib/calloc.c b/lib/libc/stdlib/calloc.c
index fbfa1de5ba5..41e7dce3bd6 100644
--- a/lib/libc/stdlib/calloc.c
+++ b/lib/libc/stdlib/calloc.c
@@ -32,7 +32,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)calloc.c 5.6 (Berkeley) 2/23/91";
+/*static char sccsid[] = "from: @(#)calloc.c 5.6 (Berkeley) 2/23/91";*/
+static char rcsid[] = "$Id: calloc.c,v 1.2 1993/08/01 18:37:13 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h>
diff --git a/lib/libc/stdlib/div.c b/lib/libc/stdlib/div.c
index ce21a722c50..48419bab497 100644
--- a/lib/libc/stdlib/div.c
+++ b/lib/libc/stdlib/div.c
@@ -35,7 +35,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)div.c 5.2 (Berkeley) 4/16/91";
+/*static char sccsid[] = "from: @(#)div.c 5.2 (Berkeley) 4/16/91";*/
+static char rcsid[] = "$Id: div.c,v 1.2 1993/08/01 18:37:12 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h> /* div_t */
diff --git a/lib/libc/stdlib/exit.c b/lib/libc/stdlib/exit.c
index 0d3c72520f4..6e407a3ef1d 100644
--- a/lib/libc/stdlib/exit.c
+++ b/lib/libc/stdlib/exit.c
@@ -32,7 +32,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)exit.c 5.4 (Berkeley) 2/23/91";
+/*static char sccsid[] = "from: @(#)exit.c 5.4 (Berkeley) 2/23/91";*/
+static char rcsid[] = "$Id: exit.c,v 1.2 1993/08/01 18:37:10 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h>
diff --git a/lib/libc/stdlib/getenv.c b/lib/libc/stdlib/getenv.c
index b07212d5bfc..7def9c703d0 100644
--- a/lib/libc/stdlib/getenv.c
+++ b/lib/libc/stdlib/getenv.c
@@ -32,7 +32,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)getenv.c 5.8 (Berkeley) 2/23/91";
+/*static char sccsid[] = "from: @(#)getenv.c 5.8 (Berkeley) 2/23/91";*/
+static char rcsid[] = "$Id: getenv.c,v 1.2 1993/08/01 18:37:09 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h>
diff --git a/lib/libc/stdlib/getopt.c b/lib/libc/stdlib/getopt.c
index 7126cc1da95..c9f0ef48c99 100644
--- a/lib/libc/stdlib/getopt.c
+++ b/lib/libc/stdlib/getopt.c
@@ -32,7 +32,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)getopt.c 4.13 (Berkeley) 2/23/91";
+/*static char sccsid[] = "from: @(#)getopt.c 4.13 (Berkeley) 2/23/91";*/
+static char rcsid[] = "$Id: getopt.c,v 1.2 1993/08/01 18:37:08 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdio.h>
diff --git a/lib/libc/stdlib/heapsort.c b/lib/libc/stdlib/heapsort.c
index 2b704662156..63a5d7a0f48 100644
--- a/lib/libc/stdlib/heapsort.c
+++ b/lib/libc/stdlib/heapsort.c
@@ -32,7 +32,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)heapsort.c 5.1 (Berkeley) 6/4/91";
+/*static char sccsid[] = "from: @(#)heapsort.c 5.1 (Berkeley) 6/4/91";*/
+static char rcsid[] = "$Id: heapsort.c,v 1.2 1993/08/01 18:37:07 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/cdefs.h>
diff --git a/lib/libc/stdlib/labs.c b/lib/libc/stdlib/labs.c
index a43a5c19549..6ca2a2e5127 100644
--- a/lib/libc/stdlib/labs.c
+++ b/lib/libc/stdlib/labs.c
@@ -32,7 +32,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)labs.c 5.2 (Berkeley) 5/17/90";
+/*static char sccsid[] = "from: @(#)labs.c 5.2 (Berkeley) 5/17/90";*/
+static char rcsid[] = "$Id: labs.c,v 1.2 1993/08/01 18:37:06 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h>
diff --git a/lib/libc/stdlib/ldiv.c b/lib/libc/stdlib/ldiv.c
index 0fa1764e30c..2e7160a10bc 100644
--- a/lib/libc/stdlib/ldiv.c
+++ b/lib/libc/stdlib/ldiv.c
@@ -35,7 +35,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)ldiv.c 5.2 (Berkeley) 4/16/91";
+/*static char sccsid[] = "from: @(#)ldiv.c 5.2 (Berkeley) 4/16/91";*/
+static char rcsid[] = "$Id: ldiv.c,v 1.2 1993/08/01 18:37:05 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h> /* ldiv_t */
diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c
index df60e3e034c..a7873dfe72a 100644
--- a/lib/libc/stdlib/malloc.c
+++ b/lib/libc/stdlib/malloc.c
@@ -32,7 +32,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)malloc.c 5.11 (Berkeley) 2/23/91";
+/*static char sccsid[] = "from: @(#)malloc.c 5.11 (Berkeley) 2/23/91";*/
+static char rcsid[] = "$Id: malloc.c,v 1.2 1993/08/01 18:37:04 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
/*
diff --git a/lib/libc/stdlib/multibyte.c b/lib/libc/stdlib/multibyte.c
index 69512796963..8036503c863 100644
--- a/lib/libc/stdlib/multibyte.c
+++ b/lib/libc/stdlib/multibyte.c
@@ -32,7 +32,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)multibyte.c 5.1 (Berkeley) 2/18/91";
+/*static char sccsid[] = "from: @(#)multibyte.c 5.1 (Berkeley) 2/18/91";*/
+static char rcsid[] = "$Id: multibyte.c,v 1.2 1993/08/01 18:37:03 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h>
diff --git a/lib/libc/stdlib/putenv.c b/lib/libc/stdlib/putenv.c
index 2a9728e8c45..deabf812922 100644
--- a/lib/libc/stdlib/putenv.c
+++ b/lib/libc/stdlib/putenv.c
@@ -32,7 +32,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)putenv.c 5.4 (Berkeley) 2/23/91";
+/*static char sccsid[] = "from: @(#)putenv.c 5.4 (Berkeley) 2/23/91";*/
+static char rcsid[] = "$Id: putenv.c,v 1.2 1993/08/01 18:37:02 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h>
diff --git a/lib/libc/stdlib/qsort.c b/lib/libc/stdlib/qsort.c
index 44a86d03f44..9f3613c8a28 100644
--- a/lib/libc/stdlib/qsort.c
+++ b/lib/libc/stdlib/qsort.c
@@ -32,7 +32,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)qsort.c 5.9 (Berkeley) 2/23/91";
+/*static char sccsid[] = "from: @(#)qsort.c 5.9 (Berkeley) 2/23/91";*/
+static char rcsid[] = "$Id: qsort.c,v 1.2 1993/08/01 18:37:00 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
diff --git a/lib/libc/stdlib/radixsort.c b/lib/libc/stdlib/radixsort.c
index 5ba48181865..b3174386788 100644
--- a/lib/libc/stdlib/radixsort.c
+++ b/lib/libc/stdlib/radixsort.c
@@ -32,7 +32,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)radixsort.c 5.7 (Berkeley) 2/23/91";
+/*static char sccsid[] = "from: @(#)radixsort.c 5.7 (Berkeley) 2/23/91";*/
+static char rcsid[] = "$Id: radixsort.c,v 1.2 1993/08/01 18:36:59 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
diff --git a/lib/libc/stdlib/rand.c b/lib/libc/stdlib/rand.c
index f96af300560..27d6804e0c6 100644
--- a/lib/libc/stdlib/rand.c
+++ b/lib/libc/stdlib/rand.c
@@ -32,7 +32,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)rand.c 5.6 (Berkeley) 6/24/91";
+/*static char sccsid[] = "from: @(#)rand.c 5.6 (Berkeley) 6/24/91";*/
+static char rcsid[] = "$Id: rand.c,v 1.2 1993/08/01 18:36:58 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
diff --git a/lib/libc/stdlib/random.c b/lib/libc/stdlib/random.c
index 74c5c363885..604965ee09b 100644
--- a/lib/libc/stdlib/random.c
+++ b/lib/libc/stdlib/random.c
@@ -32,7 +32,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)random.c 5.9 (Berkeley) 2/23/91";
+/*static char sccsid[] = "from: @(#)random.c 5.9 (Berkeley) 2/23/91";*/
+static char rcsid[] = "$Id: random.c,v 1.2 1993/08/01 18:36:57 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdio.h>
diff --git a/lib/libc/stdlib/setenv.c b/lib/libc/stdlib/setenv.c
index 79a618a99ff..791c0eba6c1 100644
--- a/lib/libc/stdlib/setenv.c
+++ b/lib/libc/stdlib/setenv.c
@@ -32,7 +32,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)setenv.c 5.6 (Berkeley) 6/4/91";
+/*static char sccsid[] = "from: @(#)setenv.c 5.6 (Berkeley) 6/4/91";*/
+static char rcsid[] = "$Id: setenv.c,v 1.3 1993/08/01 18:36:56 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stddef.h>
diff --git a/lib/libc/stdlib/strtod.c b/lib/libc/stdlib/strtod.c
index f04bfd835a0..547acf2533d 100644
--- a/lib/libc/stdlib/strtod.c
+++ b/lib/libc/stdlib/strtod.c
@@ -1,5 +1,6 @@
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)strtod.c 5.1 (Berkeley) 11/13/92";
+/*static char sccsid[] = "from: @(#)strtod.c 5.1 (Berkeley) 11/13/92";*/
+static char rcsid[] = "$Id: strtod.c,v 1.3 1993/08/01 18:36:53 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
/****************************************************************
diff --git a/lib/libc/stdlib/strtol.c b/lib/libc/stdlib/strtol.c
index 000d87647af..e7df82de6c1 100644
--- a/lib/libc/stdlib/strtol.c
+++ b/lib/libc/stdlib/strtol.c
@@ -32,7 +32,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)strtol.c 5.4 (Berkeley) 2/23/91";
+/*static char sccsid[] = "from: @(#)strtol.c 5.4 (Berkeley) 2/23/91";*/
+static char rcsid[] = "$Id: strtol.c,v 1.2 1993/08/01 18:36:55 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <limits.h>
diff --git a/lib/libc/stdlib/strtoul.c b/lib/libc/stdlib/strtoul.c
index ed8c1080ba6..7358cd3fc31 100644
--- a/lib/libc/stdlib/strtoul.c
+++ b/lib/libc/stdlib/strtoul.c
@@ -32,7 +32,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)strtoul.c 5.3 (Berkeley) 2/23/91";
+/*static char sccsid[] = "from: @(#)strtoul.c 5.3 (Berkeley) 2/23/91";*/
+static char rcsid[] = "$Id: strtoul.c,v 1.2 1993/08/01 18:36:54 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <limits.h>
diff --git a/lib/libc/stdlib/system.c b/lib/libc/stdlib/system.c
index c6233025bfa..f8104a62f67 100644
--- a/lib/libc/stdlib/system.c
+++ b/lib/libc/stdlib/system.c
@@ -32,7 +32,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)system.c 5.10 (Berkeley) 2/23/91";
+/*static char sccsid[] = "from: @(#)system.c 5.10 (Berkeley) 2/23/91";*/
+static char rcsid[] = "$Id: system.c,v 1.4 1993/08/01 18:36:52 mycroft Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>