summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib
diff options
context:
space:
mode:
authorThorsten Lockert <tholo@cvs.openbsd.org>1996-08-19 08:35:14 +0000
committerThorsten Lockert <tholo@cvs.openbsd.org>1996-08-19 08:35:14 +0000
commitd7615c200c61c89d6c4f97de1e3abf99bb759de9 (patch)
tree35d8d19aca072dba63d7062d615a555693a9142a /lib/libc/stdlib
parent796010265f845625013cfa4bb2f73a26d43f30d2 (diff)
Fix RCS ids
Make sure everything uses {SYS,}LIBC_SCCS properly
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r--lib/libc/stdlib/_rand48.c4
-rw-r--r--lib/libc/stdlib/a64l.c4
-rw-r--r--lib/libc/stdlib/abort.33
-rw-r--r--lib/libc/stdlib/abort.c3
-rw-r--r--lib/libc/stdlib/abs.33
-rw-r--r--lib/libc/stdlib/abs.c3
-rw-r--r--lib/libc/stdlib/alloca.33
-rw-r--r--lib/libc/stdlib/atexit.33
-rw-r--r--lib/libc/stdlib/atexit.c3
-rw-r--r--lib/libc/stdlib/atexit.h3
-rw-r--r--lib/libc/stdlib/atof.33
-rw-r--r--lib/libc/stdlib/atof.c3
-rw-r--r--lib/libc/stdlib/atoi.c3
-rw-r--r--lib/libc/stdlib/atol.33
-rw-r--r--lib/libc/stdlib/atol.c3
-rw-r--r--lib/libc/stdlib/bsearch.c3
-rw-r--r--lib/libc/stdlib/calloc.33
-rw-r--r--lib/libc/stdlib/calloc.c3
-rw-r--r--lib/libc/stdlib/div.33
-rw-r--r--lib/libc/stdlib/div.c3
-rw-r--r--lib/libc/stdlib/drand48.c4
-rw-r--r--lib/libc/stdlib/erand48.c4
-rw-r--r--lib/libc/stdlib/exit.33
-rw-r--r--lib/libc/stdlib/exit.c3
-rw-r--r--lib/libc/stdlib/getenv.c3
-rw-r--r--lib/libc/stdlib/getopt.32
-rw-r--r--lib/libc/stdlib/getopt.c3
-rw-r--r--lib/libc/stdlib/heapsort.c3
-rw-r--r--lib/libc/stdlib/jrand48.c4
-rw-r--r--lib/libc/stdlib/l64a.c4
-rw-r--r--lib/libc/stdlib/labs.33
-rw-r--r--lib/libc/stdlib/labs.c3
-rw-r--r--lib/libc/stdlib/lcong48.c4
-rw-r--r--lib/libc/stdlib/ldiv.33
-rw-r--r--lib/libc/stdlib/ldiv.c3
-rw-r--r--lib/libc/stdlib/lrand48.c4
-rw-r--r--lib/libc/stdlib/malloc.c7
-rw-r--r--lib/libc/stdlib/memory.33
-rw-r--r--lib/libc/stdlib/merge.c3
-rw-r--r--lib/libc/stdlib/mrand48.c4
-rw-r--r--lib/libc/stdlib/multibyte.c3
-rw-r--r--lib/libc/stdlib/nrand48.c4
-rw-r--r--lib/libc/stdlib/qabs.33
-rw-r--r--lib/libc/stdlib/qabs.c3
-rw-r--r--lib/libc/stdlib/qdiv.33
-rw-r--r--lib/libc/stdlib/qdiv.c3
-rw-r--r--lib/libc/stdlib/qsort.33
-rw-r--r--lib/libc/stdlib/qsort.c3
-rw-r--r--lib/libc/stdlib/radixsort.33
-rw-r--r--lib/libc/stdlib/radixsort.c3
-rw-r--r--lib/libc/stdlib/rand.33
-rw-r--r--lib/libc/stdlib/rand.c3
-rw-r--r--lib/libc/stdlib/rand48.32
-rw-r--r--lib/libc/stdlib/rand48.h2
-rw-r--r--lib/libc/stdlib/random.33
-rw-r--r--lib/libc/stdlib/random.c3
-rw-r--r--lib/libc/stdlib/realpath.33
-rw-r--r--lib/libc/stdlib/realpath.c3
-rw-r--r--lib/libc/stdlib/seed48.c4
-rw-r--r--lib/libc/stdlib/setenv.c3
-rw-r--r--lib/libc/stdlib/srand48.c4
-rw-r--r--lib/libc/stdlib/strtod.33
-rw-r--r--lib/libc/stdlib/strtod.c5
-rw-r--r--lib/libc/stdlib/strtol.33
-rw-r--r--lib/libc/stdlib/strtol.c3
-rw-r--r--lib/libc/stdlib/strtoq.c2
-rw-r--r--lib/libc/stdlib/strtoul.33
-rw-r--r--lib/libc/stdlib/strtoul.c3
-rw-r--r--lib/libc/stdlib/strtouq.c2
-rw-r--r--lib/libc/stdlib/system.35
-rw-r--r--lib/libc/stdlib/system.c3
71 files changed, 107 insertions, 121 deletions
diff --git a/lib/libc/stdlib/_rand48.c b/lib/libc/stdlib/_rand48.c
index 83ade4645aa..fed7372f68c 100644
--- a/lib/libc/stdlib/_rand48.c
+++ b/lib/libc/stdlib/_rand48.c
@@ -11,6 +11,10 @@
* to anyone/anything when using this software.
*/
+#if defined(LIBC_SCCS) && !defined(lint)
+static char rcsid[] = "$OpenBSD: _rand48.c,v 1.2 1996/08/19 08:33:19 tholo Exp $";
+#endif /* LIBC_SCCS and not lint */
+
#include "rand48.h"
unsigned short __rand48_seed[3] = {
diff --git a/lib/libc/stdlib/a64l.c b/lib/libc/stdlib/a64l.c
index 03fc77e034f..975e26ebb20 100644
--- a/lib/libc/stdlib/a64l.c
+++ b/lib/libc/stdlib/a64l.c
@@ -4,8 +4,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$NetBSD: a64l.c,v 1.3 1995/05/11 23:04:47 jtc Exp $";
-#endif
+static char *rcsid = "$OpenBSD: a64l.c,v 1.2 1996/08/19 08:33:19 tholo Exp $";
+#endif /* LIBC_SCCS and not lint */
long
a64l(s)
diff --git a/lib/libc/stdlib/abort.3 b/lib/libc/stdlib/abort.3
index 78e89ac907e..0ea0749bd9c 100644
--- a/lib/libc/stdlib/abort.3
+++ b/lib/libc/stdlib/abort.3
@@ -33,8 +33,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" from: @(#)abort.3 6.7 (Berkeley) 6/29/91
-.\" $Id: abort.3,v 1.1 1995/10/18 08:42:16 deraadt Exp $
+.\" $OpenBSD: abort.3,v 1.2 1996/08/19 08:33:20 tholo Exp $
.\"
.Dd June 29, 1991
.Dt ABORT 3
diff --git a/lib/libc/stdlib/abort.c b/lib/libc/stdlib/abort.c
index a904053cf72..e8495753969 100644
--- a/lib/libc/stdlib/abort.c
+++ b/lib/libc/stdlib/abort.c
@@ -32,8 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char *sccsid = "from: @(#)abort.c 5.11 (Berkeley) 2/23/91";*/
-static char *rcsid = "$Id: abort.c,v 1.1 1995/10/18 08:42:16 deraadt Exp $";
+static char *rcsid = "$OpenBSD: abort.c,v 1.2 1996/08/19 08:33:20 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <signal.h>
diff --git a/lib/libc/stdlib/abs.3 b/lib/libc/stdlib/abs.3
index 999aec55f4a..77f82b9402a 100644
--- a/lib/libc/stdlib/abs.3
+++ b/lib/libc/stdlib/abs.3
@@ -33,8 +33,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" from: @(#)abs.3 6.4 (Berkeley) 6/29/91
-.\" $Id: abs.3,v 1.1 1995/10/18 08:42:16 deraadt Exp $
+.\" $OpenBSD: abs.3,v 1.2 1996/08/19 08:33:21 tholo Exp $
.\"
.Dd June 29, 1991
.Dt ABS 3
diff --git a/lib/libc/stdlib/abs.c b/lib/libc/stdlib/abs.c
index 5c7a5a328a9..7c79e4073c3 100644
--- a/lib/libc/stdlib/abs.c
+++ b/lib/libc/stdlib/abs.c
@@ -32,8 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char *sccsid = "from: @(#)abs.c 5.2 (Berkeley) 5/17/90";*/
-static char *rcsid = "$Id: abs.c,v 1.1 1995/10/18 08:42:16 deraadt Exp $";
+static char *rcsid = "$OpenBSD: abs.c,v 1.2 1996/08/19 08:33:21 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h>
diff --git a/lib/libc/stdlib/alloca.3 b/lib/libc/stdlib/alloca.3
index 659c6ea0039..ef872207726 100644
--- a/lib/libc/stdlib/alloca.3
+++ b/lib/libc/stdlib/alloca.3
@@ -29,8 +29,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" from: @(#)alloca.3 5.1 (Berkeley) 5/2/91
-.\" $Id: alloca.3,v 1.2 1996/07/12 10:24:57 deraadt Exp $
+.\" $OpenBSD: alloca.3,v 1.3 1996/08/19 08:33:22 tholo Exp $
.\"
.Dd May 2, 1991
.Dt ALLOCA 3
diff --git a/lib/libc/stdlib/atexit.3 b/lib/libc/stdlib/atexit.3
index bb6d491cbe1..0b10f010fa0 100644
--- a/lib/libc/stdlib/atexit.3
+++ b/lib/libc/stdlib/atexit.3
@@ -33,8 +33,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" from: @(#)atexit.3 5.3 (Berkeley) 6/29/91
-.\" $Id: atexit.3,v 1.1 1995/10/18 08:42:16 deraadt Exp $
+.\" $OpenBSD: atexit.3,v 1.2 1996/08/19 08:33:22 tholo Exp $
.\"
.Dd June 29, 1991
.Dt ATEXIT 3
diff --git a/lib/libc/stdlib/atexit.c b/lib/libc/stdlib/atexit.c
index 3ade723b5f6..c0fb624141b 100644
--- a/lib/libc/stdlib/atexit.c
+++ b/lib/libc/stdlib/atexit.c
@@ -35,8 +35,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char *sccsid = "from: @(#)atexit.c 5.2 (Berkeley) 11/14/90";*/
-static char *rcsid = "$Id: atexit.c,v 1.1 1995/10/18 08:42:16 deraadt Exp $";
+static char *rcsid = "$OpenBSD: atexit.c,v 1.2 1996/08/19 08:33:22 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h>
diff --git a/lib/libc/stdlib/atexit.h b/lib/libc/stdlib/atexit.h
index 7b6bf3331ab..e41a7cb86c8 100644
--- a/lib/libc/stdlib/atexit.h
+++ b/lib/libc/stdlib/atexit.h
@@ -30,8 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * from: @(#)atexit.h 5.1 (Berkeley) 5/15/90
- * $Id: atexit.h,v 1.1 1995/10/18 08:42:16 deraadt Exp $
+ * $OpenBSD: atexit.h,v 1.2 1996/08/19 08:33:23 tholo Exp $
*/
/* must be at least 32 to guarantee ANSI conformance */
diff --git a/lib/libc/stdlib/atof.3 b/lib/libc/stdlib/atof.3
index 52ace8143e5..cc1b500b0f9 100644
--- a/lib/libc/stdlib/atof.3
+++ b/lib/libc/stdlib/atof.3
@@ -33,8 +33,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" from: @(#)atof.3 6.4 (Berkeley) 6/29/91
-.\" $Id: atof.3,v 1.1 1995/10/18 08:42:16 deraadt Exp $
+.\" $OpenBSD: atof.3,v 1.2 1996/08/19 08:33:23 tholo Exp $
.\"
.Dd June 29, 1991
.Dt ATOF 3
diff --git a/lib/libc/stdlib/atof.c b/lib/libc/stdlib/atof.c
index af20641371c..30bac198993 100644
--- a/lib/libc/stdlib/atof.c
+++ b/lib/libc/stdlib/atof.c
@@ -32,8 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char *sccsid = "from: @(#)atof.c 5.3 (Berkeley) 1/8/93";*/
-static char *rcsid = "$Id: atof.c,v 1.1 1995/10/18 08:42:16 deraadt Exp $";
+static char *rcsid = "$OpenBSD: atof.c,v 1.2 1996/08/19 08:33:24 tholo 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 5035c6f69d9..a74d6e1351f 100644
--- a/lib/libc/stdlib/atoi.c
+++ b/lib/libc/stdlib/atoi.c
@@ -32,8 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char *sccsid = "from: @(#)atoi.c 5.7 (Berkeley) 2/23/91";*/
-static char *rcsid = "$Id: atoi.c,v 1.1 1995/10/18 08:42:16 deraadt Exp $";
+static char *rcsid = "$OpenBSD: atoi.c,v 1.2 1996/08/19 08:33:24 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h>
diff --git a/lib/libc/stdlib/atol.3 b/lib/libc/stdlib/atol.3
index f57ed9df6e5..2b49bd1f2c3 100644
--- a/lib/libc/stdlib/atol.3
+++ b/lib/libc/stdlib/atol.3
@@ -33,8 +33,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" from: @(#)atol.3 5.3 (Berkeley) 6/29/91
-.\" $Id: atol.3,v 1.1 1995/10/18 08:42:16 deraadt Exp $
+.\" $OpenBSD: atol.3,v 1.2 1996/08/19 08:33:25 tholo Exp $
.\"
.Dd June 29, 1991
.Dt ATOL 3
diff --git a/lib/libc/stdlib/atol.c b/lib/libc/stdlib/atol.c
index 3fa5e855111..528a9322149 100644
--- a/lib/libc/stdlib/atol.c
+++ b/lib/libc/stdlib/atol.c
@@ -32,8 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char *sccsid = "from: @(#)atol.c 5.7 (Berkeley) 2/23/91";*/
-static char *rcsid = "$Id: atol.c,v 1.1 1995/10/18 08:42:16 deraadt Exp $";
+static char *rcsid = "$OpenBSD: atol.c,v 1.2 1996/08/19 08:33:26 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h>
diff --git a/lib/libc/stdlib/bsearch.c b/lib/libc/stdlib/bsearch.c
index aaa663d8112..eeef9bffc66 100644
--- a/lib/libc/stdlib/bsearch.c
+++ b/lib/libc/stdlib/bsearch.c
@@ -32,8 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char *sccsid = "from: @(#)bsearch.c 5.4 (Berkeley) 2/23/91";*/
-static char *rcsid = "$Id: bsearch.c,v 1.1 1995/10/18 08:42:16 deraadt Exp $";
+static char *rcsid = "$OpenBSD: bsearch.c,v 1.2 1996/08/19 08:33:26 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h>
diff --git a/lib/libc/stdlib/calloc.3 b/lib/libc/stdlib/calloc.3
index 1064f8fdd1a..4b32c2e9dcf 100644
--- a/lib/libc/stdlib/calloc.3
+++ b/lib/libc/stdlib/calloc.3
@@ -33,8 +33,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" from: @(#)calloc.3 5.2 (Berkeley) 6/29/91
-.\" $Id: calloc.3,v 1.1 1995/10/18 08:42:17 deraadt Exp $
+.\" $OpenBSD: calloc.3,v 1.2 1996/08/19 08:33:26 tholo Exp $
.\"
.Dd June 29, 1991
.Dt CALLOC 3
diff --git a/lib/libc/stdlib/calloc.c b/lib/libc/stdlib/calloc.c
index 292e2993c9a..5b9619ced1f 100644
--- a/lib/libc/stdlib/calloc.c
+++ b/lib/libc/stdlib/calloc.c
@@ -32,8 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char *sccsid = "from: @(#)calloc.c 5.6 (Berkeley) 2/23/91";*/
-static char *rcsid = "$Id: calloc.c,v 1.1 1995/10/18 08:42:17 deraadt Exp $";
+static char *rcsid = "$OpenBSD: calloc.c,v 1.2 1996/08/19 08:33:27 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h>
diff --git a/lib/libc/stdlib/div.3 b/lib/libc/stdlib/div.3
index 60d8088f23d..0d8c56d86b7 100644
--- a/lib/libc/stdlib/div.3
+++ b/lib/libc/stdlib/div.3
@@ -31,8 +31,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" from: @(#)div.3 5.2 (Berkeley) 4/19/91
-.\" $Id: div.3,v 1.1 1995/10/18 08:42:17 deraadt Exp $
+.\" $OpenBSD: div.3,v 1.2 1996/08/19 08:33:28 tholo Exp $
.\"
.Dd April 19, 1991
.Dt DIV 3
diff --git a/lib/libc/stdlib/div.c b/lib/libc/stdlib/div.c
index 71000a907e8..c1fae29008e 100644
--- a/lib/libc/stdlib/div.c
+++ b/lib/libc/stdlib/div.c
@@ -35,8 +35,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char *sccsid = "from: @(#)div.c 5.2 (Berkeley) 4/16/91";*/
-static char *rcsid = "$Id: div.c,v 1.1 1995/10/18 08:42:17 deraadt Exp $";
+static char *rcsid = "$OpenBSD: div.c,v 1.2 1996/08/19 08:33:29 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h> /* div_t */
diff --git a/lib/libc/stdlib/drand48.c b/lib/libc/stdlib/drand48.c
index ae1a8634dc6..02886d5b621 100644
--- a/lib/libc/stdlib/drand48.c
+++ b/lib/libc/stdlib/drand48.c
@@ -11,6 +11,10 @@
* to anyone/anything when using this software.
*/
+#if defined(LIBC_SCCS) && !defined(lint)
+static char rcsid[] = "$OpenBSD: drand48.c,v 1.2 1996/08/19 08:33:29 tholo Exp $";
+#endif /* LIBC_SCCS and not lint */
+
#include "rand48.h"
extern unsigned short __rand48_seed[3];
diff --git a/lib/libc/stdlib/erand48.c b/lib/libc/stdlib/erand48.c
index cc9fbf770ce..b92dacffcc3 100644
--- a/lib/libc/stdlib/erand48.c
+++ b/lib/libc/stdlib/erand48.c
@@ -11,6 +11,10 @@
* to anyone/anything when using this software.
*/
+#if defined(LIBC_SCCS) && !defined(lint)
+static char rcsid[] = "$OpenBSD: erand48.c,v 1.2 1996/08/19 08:33:29 tholo Exp $";
+#endif /* LIBC_SCCS and not lint */
+
#include "rand48.h"
double
diff --git a/lib/libc/stdlib/exit.3 b/lib/libc/stdlib/exit.3
index 905e47c2564..6dd2affef90 100644
--- a/lib/libc/stdlib/exit.3
+++ b/lib/libc/stdlib/exit.3
@@ -33,8 +33,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" from: @(#)exit.3 6.6 (Berkeley) 6/29/91
-.\" $Id: exit.3,v 1.1 1995/10/18 08:42:17 deraadt Exp $
+.\" $OpenBSD: exit.3,v 1.2 1996/08/19 08:33:30 tholo Exp $
.\"
.Dd June 29, 1991
.Dt EXIT 3
diff --git a/lib/libc/stdlib/exit.c b/lib/libc/stdlib/exit.c
index 8fe5635e977..e358c94fd66 100644
--- a/lib/libc/stdlib/exit.c
+++ b/lib/libc/stdlib/exit.c
@@ -32,8 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char *sccsid = "from: @(#)exit.c 5.4 (Berkeley) 2/23/91";*/
-static char *rcsid = "$Id: exit.c,v 1.1 1995/10/18 08:42:17 deraadt Exp $";
+static char *rcsid = "$OpenBSD: exit.c,v 1.2 1996/08/19 08:33:30 tholo 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 d1487a7afc7..e944c287bcf 100644
--- a/lib/libc/stdlib/getenv.c
+++ b/lib/libc/stdlib/getenv.c
@@ -32,8 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char *sccsid = "from: @(#)getenv.c 5.8 (Berkeley) 2/23/91";*/
-static char *rcsid = "$Id: getenv.c,v 1.2 1996/03/25 22:16:38 tholo Exp $";
+static char *rcsid = "$OpenBSD: getenv.c,v 1.3 1996/08/19 08:33:31 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h>
diff --git a/lib/libc/stdlib/getopt.3 b/lib/libc/stdlib/getopt.3
index f843881afd8..e0e47af7b82 100644
--- a/lib/libc/stdlib/getopt.3
+++ b/lib/libc/stdlib/getopt.3
@@ -29,7 +29,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" @(#)getopt.3 8.4 (Berkeley) 4/19/94
+.\" $OpenBSD: getopt.3,v 1.2 1996/08/19 08:33:31 tholo Exp $
.\"
.Dd April 19, 1994
.Dt GETOPT 3
diff --git a/lib/libc/stdlib/getopt.c b/lib/libc/stdlib/getopt.c
index 8d05061f7af..b7f61636623 100644
--- a/lib/libc/stdlib/getopt.c
+++ b/lib/libc/stdlib/getopt.c
@@ -32,8 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/* static char sccsid[] = "from: @(#)getopt.c 8.2 (Berkeley) 4/2/94"; */
-static char *rcsid = "$Id: getopt.c,v 1.1 1995/10/18 08:42:17 deraadt Exp $";
+static char *rcsid = "$OpenBSD: getopt.c,v 1.2 1996/08/19 08:33:32 tholo 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 3be56ba1d64..e3e4392e055 100644
--- a/lib/libc/stdlib/heapsort.c
+++ b/lib/libc/stdlib/heapsort.c
@@ -35,8 +35,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char sccsid[] = "from: @(#)heapsort.c 8.1 (Berkeley) 6/4/93";*/
-static char *rcsid = "$Id: heapsort.c,v 1.1 1995/10/18 08:42:17 deraadt Exp $";
+static char *rcsid = "$OpenBSD: heapsort.c,v 1.2 1996/08/19 08:33:32 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
diff --git a/lib/libc/stdlib/jrand48.c b/lib/libc/stdlib/jrand48.c
index 205781e0ee0..99cddb71e5f 100644
--- a/lib/libc/stdlib/jrand48.c
+++ b/lib/libc/stdlib/jrand48.c
@@ -11,6 +11,10 @@
* to anyone/anything when using this software.
*/
+#if defined(LIBC_SCCS) && !defined(lint)
+static char rcsid[] = "$OpenBSD: jrand48.c,v 1.2 1996/08/19 08:33:33 tholo Exp $";
+#endif /* LIBC_SCCS and not lint */
+
#include "rand48.h"
long
diff --git a/lib/libc/stdlib/l64a.c b/lib/libc/stdlib/l64a.c
index 3069b31bf67..630f9e33652 100644
--- a/lib/libc/stdlib/l64a.c
+++ b/lib/libc/stdlib/l64a.c
@@ -4,8 +4,8 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$NetBSD: l64a.c,v 1.4 1995/05/11 23:04:52 jtc Exp $";
-#endif
+static char *rcsid = "$OpenBSD: l64a.c,v 1.2 1996/08/19 08:33:33 tholo Exp $";
+#endif /* LIBC_SCCS and not lint */
#include <stdlib.h>
diff --git a/lib/libc/stdlib/labs.3 b/lib/libc/stdlib/labs.3
index a26dba3e7d5..05eae329df2 100644
--- a/lib/libc/stdlib/labs.3
+++ b/lib/libc/stdlib/labs.3
@@ -33,8 +33,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" from: @(#)labs.3 5.3 (Berkeley) 6/29/91
-.\" $Id: labs.3,v 1.1 1995/10/18 08:42:17 deraadt Exp $
+.\" $OpenBSD: labs.3,v 1.2 1996/08/19 08:33:34 tholo Exp $
.\"
.Dd June 29, 1991
.Dt LABS 3
diff --git a/lib/libc/stdlib/labs.c b/lib/libc/stdlib/labs.c
index 83479139839..f20e2c29bef 100644
--- a/lib/libc/stdlib/labs.c
+++ b/lib/libc/stdlib/labs.c
@@ -32,8 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char *sccsid = "from: @(#)labs.c 5.2 (Berkeley) 5/17/90";*/
-static char *rcsid = "$Id: labs.c,v 1.1 1995/10/18 08:42:17 deraadt Exp $";
+static char *rcsid = "$OpenBSD: labs.c,v 1.2 1996/08/19 08:33:34 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h>
diff --git a/lib/libc/stdlib/lcong48.c b/lib/libc/stdlib/lcong48.c
index 965d46b17aa..44bd74e48a7 100644
--- a/lib/libc/stdlib/lcong48.c
+++ b/lib/libc/stdlib/lcong48.c
@@ -11,6 +11,10 @@
* to anyone/anything when using this software.
*/
+#if defined(LIBC_SCCS) && !defined(lint)
+static char rcsid[] = "$OpenBSD: lcong48.c,v 1.2 1996/08/19 08:33:35 tholo Exp $";
+#endif /* LIBC_SCCS and not lint */
+
#include "rand48.h"
extern unsigned short __rand48_seed[3];
diff --git a/lib/libc/stdlib/ldiv.3 b/lib/libc/stdlib/ldiv.3
index 66c778a72ef..8757f4ddd5b 100644
--- a/lib/libc/stdlib/ldiv.3
+++ b/lib/libc/stdlib/ldiv.3
@@ -33,8 +33,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" from: @(#)ldiv.3 5.3 (Berkeley) 6/29/91
-.\" $Id: ldiv.3,v 1.1 1995/10/18 08:42:18 deraadt Exp $
+.\" $OpenBSD: ldiv.3,v 1.2 1996/08/19 08:33:35 tholo Exp $
.\"
.Dd June 29, 1991
.Dt LDIV 3
diff --git a/lib/libc/stdlib/ldiv.c b/lib/libc/stdlib/ldiv.c
index 46bd5098a90..908c2bf0aa3 100644
--- a/lib/libc/stdlib/ldiv.c
+++ b/lib/libc/stdlib/ldiv.c
@@ -35,8 +35,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char *sccsid = "from: @(#)ldiv.c 5.2 (Berkeley) 4/16/91";*/
-static char *rcsid = "$Id: ldiv.c,v 1.1 1995/10/18 08:42:18 deraadt Exp $";
+static char *rcsid = "$OpenBSD: ldiv.c,v 1.2 1996/08/19 08:33:35 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h> /* ldiv_t */
diff --git a/lib/libc/stdlib/lrand48.c b/lib/libc/stdlib/lrand48.c
index 8e7f26237fe..6b7524a51bc 100644
--- a/lib/libc/stdlib/lrand48.c
+++ b/lib/libc/stdlib/lrand48.c
@@ -11,6 +11,10 @@
* to anyone/anything when using this software.
*/
+#if defined(LIBC_SCCS) && !defined(lint)
+static char rcsid[] = "$OpenBSD: lrand48.c,v 1.2 1996/08/19 08:33:36 tholo Exp $";
+#endif /* LIBC_SCCS and not lint */
+
#include "rand48.h"
extern unsigned short __rand48_seed[3];
diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c
index 38938f96cfe..66da09ff312 100644
--- a/lib/libc/stdlib/malloc.c
+++ b/lib/libc/stdlib/malloc.c
@@ -5,11 +5,12 @@
* can do whatever you want with this stuff. If we meet some day, and you think
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
* ----------------------------------------------------------------------------
- *
- * $Id: malloc.c,v 1.4 1996/08/02 18:08:09 tholo Exp $
- *
*/
+#if defined(LIBC_SCCS) && !defined(lint)
+static char rcsid[] = "$OpenBSD: malloc.c,v 1.5 1996/08/19 08:33:37 tholo Exp $";
+#endif /* LIBC_SCCS and not lint */
+
/*
* Defining EXTRA_SANITY will enable some checks which are related
* to internal conditions and consistency in malloc.c
diff --git a/lib/libc/stdlib/memory.3 b/lib/libc/stdlib/memory.3
index 757a43132a9..712c7c45d28 100644
--- a/lib/libc/stdlib/memory.3
+++ b/lib/libc/stdlib/memory.3
@@ -29,8 +29,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" from: @(#)memory.3 5.1 (Berkeley) 5/2/91
-.\" $Id: memory.3,v 1.1 1995/10/18 08:42:18 deraadt Exp $
+.\" $OpenBSD: memory.3,v 1.2 1996/08/19 08:33:37 tholo Exp $
.\"
.Dd May 2, 1991
.Dt MEMORY 3
diff --git a/lib/libc/stdlib/merge.c b/lib/libc/stdlib/merge.c
index fe3c22ffa6b..8c73cd238b4 100644
--- a/lib/libc/stdlib/merge.c
+++ b/lib/libc/stdlib/merge.c
@@ -35,8 +35,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char sccsid[] = "from: @(#)merge.c 8.2 (Berkeley) 2/14/94";*/
-static char *rcsid = "$Id: merge.c,v 1.1 1995/10/18 08:42:18 deraadt Exp $";
+static char *rcsid = "$OpenBSD: merge.c,v 1.2 1996/08/19 08:33:38 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
/*
diff --git a/lib/libc/stdlib/mrand48.c b/lib/libc/stdlib/mrand48.c
index 43356e66b38..cd34260b5cc 100644
--- a/lib/libc/stdlib/mrand48.c
+++ b/lib/libc/stdlib/mrand48.c
@@ -11,6 +11,10 @@
* to anyone/anything when using this software.
*/
+#if defined(LIBC_SCCS) && !defined(lint)
+static char rcsid[] = "$OpenBSD: mrand48.c,v 1.2 1996/08/19 08:33:39 tholo Exp $";
+#endif /* LIBC_SCCS and not lint */
+
#include "rand48.h"
extern unsigned short __rand48_seed[3];
diff --git a/lib/libc/stdlib/multibyte.c b/lib/libc/stdlib/multibyte.c
index 0d2dcbf217f..12e70c4a2c7 100644
--- a/lib/libc/stdlib/multibyte.c
+++ b/lib/libc/stdlib/multibyte.c
@@ -32,8 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char *sccsid = "from: @(#)multibyte.c 5.1 (Berkeley) 2/18/91";*/
-static char *rcsid = "$Id: multibyte.c,v 1.1 1995/10/18 08:42:18 deraadt Exp $";
+static char *rcsid = "$OpenBSD: multibyte.c,v 1.2 1996/08/19 08:33:39 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h>
diff --git a/lib/libc/stdlib/nrand48.c b/lib/libc/stdlib/nrand48.c
index 63f839cb052..b1ec2cebb1a 100644
--- a/lib/libc/stdlib/nrand48.c
+++ b/lib/libc/stdlib/nrand48.c
@@ -11,6 +11,10 @@
* to anyone/anything when using this software.
*/
+#if defined(LIBC_SCCS) && !defined(lint)
+static char rcsid[] = "$OpenBSD: nrand48.c,v 1.2 1996/08/19 08:33:40 tholo Exp $";
+#endif /* LIBC_SCCS and not lint */
+
#include "rand48.h"
long
diff --git a/lib/libc/stdlib/qabs.3 b/lib/libc/stdlib/qabs.3
index c0451a51ce3..92a8bdc4b9a 100644
--- a/lib/libc/stdlib/qabs.3
+++ b/lib/libc/stdlib/qabs.3
@@ -33,8 +33,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" from: @(#)labs.3 5.3 (Berkeley) 6/29/91
-.\" $Id: qabs.3,v 1.1 1995/10/18 08:42:18 deraadt Exp $
+.\" $OpenBSD: qabs.3,v 1.2 1996/08/19 08:33:40 tholo Exp $
.\"
.Dd June 29, 1991
.Dt QABS 3
diff --git a/lib/libc/stdlib/qabs.c b/lib/libc/stdlib/qabs.c
index 99b62cb276d..ccc42cbec67 100644
--- a/lib/libc/stdlib/qabs.c
+++ b/lib/libc/stdlib/qabs.c
@@ -32,8 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char *sccsid = "from: @(#)labs.c 5.2 (Berkeley) 5/17/90";*/
-static char *rcsid = "$Id: qabs.c,v 1.1 1995/10/18 08:42:18 deraadt Exp $";
+static char *rcsid = "$OpenBSD: qabs.c,v 1.2 1996/08/19 08:33:40 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h>
diff --git a/lib/libc/stdlib/qdiv.3 b/lib/libc/stdlib/qdiv.3
index 01f1106e9e5..12aca0b1ea4 100644
--- a/lib/libc/stdlib/qdiv.3
+++ b/lib/libc/stdlib/qdiv.3
@@ -33,8 +33,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" from: @(#)qdiv.3 5.3 (Berkeley) 6/29/91
-.\" $Id: qdiv.3,v 1.1 1995/10/18 08:42:18 deraadt Exp $
+.\" $OpenBSD: qdiv.3,v 1.2 1996/08/19 08:33:41 tholo Exp $
.\"
.Dd June 29, 1991
.Dt QDIV 3
diff --git a/lib/libc/stdlib/qdiv.c b/lib/libc/stdlib/qdiv.c
index beef9485421..07e84cd6499 100644
--- a/lib/libc/stdlib/qdiv.c
+++ b/lib/libc/stdlib/qdiv.c
@@ -35,8 +35,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char *sccsid = "from: @(#)ldiv.c 5.2 (Berkeley) 4/16/91";*/
-static char *rcsid = "$Id: qdiv.c,v 1.1 1995/10/18 08:42:18 deraadt Exp $";
+static char *rcsid = "$OpenBSD: qdiv.c,v 1.2 1996/08/19 08:33:41 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h> /* qdiv_t */
diff --git a/lib/libc/stdlib/qsort.3 b/lib/libc/stdlib/qsort.3
index e16ddf3d40a..a65c5819d05 100644
--- a/lib/libc/stdlib/qsort.3
+++ b/lib/libc/stdlib/qsort.3
@@ -33,8 +33,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" from: @(#)qsort.3 8.1 (Berkeley) 6/4/93
-.\" $Id: qsort.3,v 1.1 1995/10/18 08:42:18 deraadt Exp $
+.\" $OpenBSD: qsort.3,v 1.2 1996/08/19 08:33:42 tholo Exp $
.\"
.Dd June 4, 1993
.Dt QSORT 3
diff --git a/lib/libc/stdlib/qsort.c b/lib/libc/stdlib/qsort.c
index 6606c877bbc..02d7a60bc77 100644
--- a/lib/libc/stdlib/qsort.c
+++ b/lib/libc/stdlib/qsort.c
@@ -32,8 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char sccsid[] = "from: @(#)qsort.c 8.1 (Berkeley) 6/4/93";*/
-static char *rcsid = "$Id: qsort.c,v 1.3 1996/03/25 22:34:43 tholo Exp $";
+static char *rcsid = "$OpenBSD: qsort.c,v 1.4 1996/08/19 08:33:42 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
diff --git a/lib/libc/stdlib/radixsort.3 b/lib/libc/stdlib/radixsort.3
index 3654f8279fa..9dc803eb272 100644
--- a/lib/libc/stdlib/radixsort.3
+++ b/lib/libc/stdlib/radixsort.3
@@ -29,8 +29,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" from: @(#)radixsort.3 8.2 (Berkeley) 1/27/94
-.\" $Id: radixsort.3,v 1.1 1995/10/18 08:42:18 deraadt Exp $
+.\" $OpenBSD: radixsort.3,v 1.2 1996/08/19 08:33:43 tholo Exp $
.\"
.Dd January 27, 1994
.Dt RADIXSORT 3
diff --git a/lib/libc/stdlib/radixsort.c b/lib/libc/stdlib/radixsort.c
index d571c8f3d2c..41ed9624663 100644
--- a/lib/libc/stdlib/radixsort.c
+++ b/lib/libc/stdlib/radixsort.c
@@ -35,8 +35,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char sccsid[] = "from: @(#)radixsort.c 8.1 (Berkeley) 6/4/93";*/
-static char *rcsid = "$Id: radixsort.c,v 1.2 1996/03/25 22:16:39 tholo Exp $";
+static char *rcsid = "$OpenBSD: radixsort.c,v 1.3 1996/08/19 08:33:44 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
/*
diff --git a/lib/libc/stdlib/rand.3 b/lib/libc/stdlib/rand.3
index 5089b3228ce..a27720d6144 100644
--- a/lib/libc/stdlib/rand.3
+++ b/lib/libc/stdlib/rand.3
@@ -33,8 +33,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" from: @(#)rand.3 6.7 (Berkeley) 6/29/91
-.\" $Id: rand.3,v 1.1 1995/10/18 08:42:19 deraadt Exp $
+.\" $OpenBSD: rand.3,v 1.2 1996/08/19 08:33:44 tholo Exp $
.\"
.Dd June 29, 1991
.Dt RAND 3
diff --git a/lib/libc/stdlib/rand.c b/lib/libc/stdlib/rand.c
index 75307665262..f270ffd9868 100644
--- a/lib/libc/stdlib/rand.c
+++ b/lib/libc/stdlib/rand.c
@@ -32,8 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char *sccsid = "from: @(#)rand.c 5.6 (Berkeley) 6/24/91";*/
-static char *rcsid = "$Id: rand.c,v 1.1 1995/10/18 08:42:19 deraadt Exp $";
+static char *rcsid = "$OpenBSD: rand.c,v 1.2 1996/08/19 08:33:44 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
diff --git a/lib/libc/stdlib/rand48.3 b/lib/libc/stdlib/rand48.3
index b4f93dfa625..72fa27e17ac 100644
--- a/lib/libc/stdlib/rand48.3
+++ b/lib/libc/stdlib/rand48.3
@@ -9,7 +9,7 @@
.\" of any kind. I shall in no event be liable for anything that happens
.\" to anyone/anything when using this software.
.\"
-.\" $Id: rand48.3,v 1.1 1995/10/18 08:42:19 deraadt Exp $
+.\" $OpenBSD: rand48.3,v 1.2 1996/08/19 08:33:45 tholo Exp $
.\"
.Dd October 8, 1993
.Dt RAND48 3
diff --git a/lib/libc/stdlib/rand48.h b/lib/libc/stdlib/rand48.h
index 12496d1c8c2..e7cb3e03330 100644
--- a/lib/libc/stdlib/rand48.h
+++ b/lib/libc/stdlib/rand48.h
@@ -9,6 +9,8 @@
* This software is provided ``as is'', and comes with no warranties
* of any kind. I shall in no event be liable for anything that happens
* to anyone/anything when using this software.
+ *
+ * $OpenBSD: rand48.h,v 1.2 1996/08/19 08:33:45 tholo Exp $
*/
#ifndef _RAND48_H_
diff --git a/lib/libc/stdlib/random.3 b/lib/libc/stdlib/random.3
index f52a26eb5bc..6188c2a4318 100644
--- a/lib/libc/stdlib/random.3
+++ b/lib/libc/stdlib/random.3
@@ -29,8 +29,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" from: @(#)random.3 6.5 (Berkeley) 4/19/91
-.\" $Id: random.3,v 1.2 1996/05/04 11:57:28 deraadt Exp $
+.\" $OpenBSD: random.3,v 1.3 1996/08/19 08:33:46 tholo Exp $
.\"
.Dd April 19, 1991
.Dt RANDOM 3
diff --git a/lib/libc/stdlib/random.c b/lib/libc/stdlib/random.c
index 9b1fe3c7381..de7cc3cf440 100644
--- a/lib/libc/stdlib/random.c
+++ b/lib/libc/stdlib/random.c
@@ -32,8 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char *sccsid = "from: @(#)random.c 5.9 (Berkeley) 2/23/91";*/
-static char *rcsid = "$Id: random.c,v 1.2 1996/03/30 10:01:47 tholo Exp $";
+static char *rcsid = "$OpenBSD: random.c,v 1.3 1996/08/19 08:33:46 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdio.h>
diff --git a/lib/libc/stdlib/realpath.3 b/lib/libc/stdlib/realpath.3
index 97f388fe40d..18be43a704f 100644
--- a/lib/libc/stdlib/realpath.3
+++ b/lib/libc/stdlib/realpath.3
@@ -32,8 +32,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" from: @(#)realpath.3 8.2 (Berkeley) 2/16/94
-.\" $Id: realpath.3,v 1.1 1995/10/18 08:42:19 deraadt Exp $
+.\" $OpenBSD: realpath.3,v 1.2 1996/08/19 08:33:47 tholo Exp $
.\"
.Dd "February 16, 1994"
.Dt REALPATH 3
diff --git a/lib/libc/stdlib/realpath.c b/lib/libc/stdlib/realpath.c
index 7306f31d8a6..51e336efdd5 100644
--- a/lib/libc/stdlib/realpath.c
+++ b/lib/libc/stdlib/realpath.c
@@ -35,8 +35,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char sccsid[] = "from: @(#)realpath.c 8.1 (Berkeley) 2/16/94";*/
-static char *rcsid = "$Id: realpath.c,v 1.1 1995/10/18 08:42:19 deraadt Exp $";
+static char *rcsid = "$OpenBSD: realpath.c,v 1.2 1996/08/19 08:33:47 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/param.h>
diff --git a/lib/libc/stdlib/seed48.c b/lib/libc/stdlib/seed48.c
index e3d31901dd2..c4dcd0ead80 100644
--- a/lib/libc/stdlib/seed48.c
+++ b/lib/libc/stdlib/seed48.c
@@ -11,6 +11,10 @@
* to anyone/anything when using this software.
*/
+#if defined(LIBC_SCCS) && !defined(lint)
+static char rcsid[] = "$OpenBSD: seed48.c,v 1.2 1996/08/19 08:33:48 tholo Exp $";
+#endif /* LIBC_SCCS and not lint */
+
#include "rand48.h"
extern unsigned short __rand48_seed[3];
diff --git a/lib/libc/stdlib/setenv.c b/lib/libc/stdlib/setenv.c
index c317d3c8e34..8838eb87809 100644
--- a/lib/libc/stdlib/setenv.c
+++ b/lib/libc/stdlib/setenv.c
@@ -32,8 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char *sccsid = "from: @(#)setenv.c 5.6 (Berkeley) 6/4/91";*/
-static char *rcsid = "$Id: setenv.c,v 1.1 1995/10/18 08:42:19 deraadt Exp $";
+static char *rcsid = "$OpenBSD: setenv.c,v 1.2 1996/08/19 08:33:48 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h>
diff --git a/lib/libc/stdlib/srand48.c b/lib/libc/stdlib/srand48.c
index daf733f93e5..fcff8a172ec 100644
--- a/lib/libc/stdlib/srand48.c
+++ b/lib/libc/stdlib/srand48.c
@@ -11,6 +11,10 @@
* to anyone/anything when using this software.
*/
+#if defined(LIBC_SCCS) && !defined(lint)
+static char rcsid[] = "$OpenBSD: srand48.c,v 1.2 1996/08/19 08:33:49 tholo Exp $";
+#endif /* LIBC_SCCS and not lint */
+
#include "rand48.h"
extern unsigned short __rand48_seed[3];
diff --git a/lib/libc/stdlib/strtod.3 b/lib/libc/stdlib/strtod.3
index f0e65c2eaee..3476fa41d6a 100644
--- a/lib/libc/stdlib/strtod.3
+++ b/lib/libc/stdlib/strtod.3
@@ -33,8 +33,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" from: @(#)strtod.3 5.3 (Berkeley) 6/29/91
-.\" $Id: strtod.3,v 1.1 1995/10/18 08:42:19 deraadt Exp $
+.\" $OpenBSD: strtod.3,v 1.2 1996/08/19 08:33:49 tholo Exp $
.\"
.Dd June 29, 1991
.Dt STRTOD 3
diff --git a/lib/libc/stdlib/strtod.c b/lib/libc/stdlib/strtod.c
index 57db3d42b11..2fb5caed103 100644
--- a/lib/libc/stdlib/strtod.c
+++ b/lib/libc/stdlib/strtod.c
@@ -1,6 +1,3 @@
-/* $OpenBSD: strtod.c,v 1.3 1996/07/27 10:45:23 deraadt Exp $ */
-/* $NetBSD: strtod.c,v 1.21.4.1 1996/07/20 01:14:54 jtc Exp $ */
-
/****************************************************************
*
* The author of this software is David M. Gay.
@@ -93,7 +90,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: strtod.c,v 1.3 1996/07/27 10:45:23 deraadt Exp $";
+static char *rcsid = "$OpenBSD: strtod.c,v 1.4 1996/08/19 08:33:50 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#if defined(__m68k__) || defined(__sparc__) || defined(__i386__) || \
diff --git a/lib/libc/stdlib/strtol.3 b/lib/libc/stdlib/strtol.3
index 506a7ace172..b7d2cd12255 100644
--- a/lib/libc/stdlib/strtol.3
+++ b/lib/libc/stdlib/strtol.3
@@ -33,8 +33,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" from: @(#)strtol.3 5.4 (Berkeley) 6/25/92
-.\" $Id: strtol.3,v 1.2 1995/12/14 02:16:48 deraadt Exp $
+.\" $OpenBSD: strtol.3,v 1.3 1996/08/19 08:33:51 tholo Exp $
.\"
.Dd June 25, 1992
.Dt STRTOL 3
diff --git a/lib/libc/stdlib/strtol.c b/lib/libc/stdlib/strtol.c
index 6ca9e553b26..e4ad557fd54 100644
--- a/lib/libc/stdlib/strtol.c
+++ b/lib/libc/stdlib/strtol.c
@@ -32,8 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char *sccsid = "from: @(#)strtol.c 5.4 (Berkeley) 2/23/91";*/
-static char *rcsid = "$Id: strtol.c,v 1.3 1996/07/27 10:45:24 deraadt Exp $";
+static char *rcsid = "$OpenBSD: strtol.c,v 1.4 1996/08/19 08:33:51 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <ctype.h>
diff --git a/lib/libc/stdlib/strtoq.c b/lib/libc/stdlib/strtoq.c
index 0532f9f228c..44aabd73f0a 100644
--- a/lib/libc/stdlib/strtoq.c
+++ b/lib/libc/stdlib/strtoq.c
@@ -32,7 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)strtoq.c 5.1 (Berkeley) 6/26/92";
+static char rcsid[] = "$OpenBSD: strtoq.c,v 1.4 1996/08/19 08:33:52 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
diff --git a/lib/libc/stdlib/strtoul.3 b/lib/libc/stdlib/strtoul.3
index 327f0c92536..b8234122a2b 100644
--- a/lib/libc/stdlib/strtoul.3
+++ b/lib/libc/stdlib/strtoul.3
@@ -33,8 +33,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" from: @(#)strtoul.3 5.4 (Berkeley) 6/25/92
-.\" $Id: strtoul.3,v 1.1 1995/10/18 08:42:20 deraadt Exp $
+.\" $OpenBSD: strtoul.3,v 1.2 1996/08/19 08:33:52 tholo Exp $
.\"
.Dd June 25, 1992
.Dt STRTOUL 3
diff --git a/lib/libc/stdlib/strtoul.c b/lib/libc/stdlib/strtoul.c
index 9d45c5cb9e6..d3b363fa04a 100644
--- a/lib/libc/stdlib/strtoul.c
+++ b/lib/libc/stdlib/strtoul.c
@@ -32,8 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char *sccsid = "from: @(#)strtoul.c 5.3 (Berkeley) 2/23/91";*/
-static char *rcsid = "$Id: strtoul.c,v 1.3 1996/07/27 10:45:25 deraadt Exp $";
+static char *rcsid = "$OpenBSD: strtoul.c,v 1.4 1996/08/19 08:33:52 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <ctype.h>
diff --git a/lib/libc/stdlib/strtouq.c b/lib/libc/stdlib/strtouq.c
index b872cf56f75..1f29a22f33d 100644
--- a/lib/libc/stdlib/strtouq.c
+++ b/lib/libc/stdlib/strtouq.c
@@ -32,7 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)strtouq.c 5.1 (Berkeley) 6/26/92";
+static char rcsid[] = "$OpenBSD: strtouq.c,v 1.4 1996/08/19 08:33:53 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
diff --git a/lib/libc/stdlib/system.3 b/lib/libc/stdlib/system.3
index b3e3cb8e472..2cfed31baae 100644
--- a/lib/libc/stdlib/system.3
+++ b/lib/libc/stdlib/system.3
@@ -1,6 +1,3 @@
-.\" $OpenBSD: system.3,v 1.3 1996/03/19 23:15:12 niklas Exp $
-.\" $NetBSD: system.3,v 1.7 1996/02/16 22:30:46 jtc Exp $
-.\"
.\" Copyright (c) 1990, 1991 The Regents of the University of California.
.\" All rights reserved.
.\"
@@ -36,7 +33,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.\" from: @(#)system.3 6.5 (Berkeley) 6/29/91
+.\" $OpenBSD: system.3,v 1.4 1996/08/19 08:33:53 tholo Exp $
.\"
.Dd June 29, 1991
.Dt SYSTEM 3
diff --git a/lib/libc/stdlib/system.c b/lib/libc/stdlib/system.c
index 85f3ae835ec..91f98888af0 100644
--- a/lib/libc/stdlib/system.c
+++ b/lib/libc/stdlib/system.c
@@ -32,8 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char *sccsid = "from: @(#)system.c 5.10 (Berkeley) 2/23/91";*/
-static char *rcsid = "$Id: system.c,v 1.1 1995/10/18 08:42:20 deraadt Exp $";
+static char *rcsid = "$OpenBSD: system.c,v 1.2 1996/08/19 08:33:54 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>