summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/csu/alpha/crt0.c6
-rw-r--r--lib/csu/i386/crt0.c4
-rw-r--r--lib/csu/m68k/crt0.c3
-rw-r--r--lib/csu/mips/crt0.c4
-rw-r--r--lib/csu/mvme88k/crt0.c6
-rw-r--r--lib/csu/ns32k/crt0.c4
-rw-r--r--lib/csu/sparc/crt0.c3
-rw-r--r--lib/csu/vax/crt0.c3
8 files changed, 23 insertions, 10 deletions
diff --git a/lib/csu/alpha/crt0.c b/lib/csu/alpha/crt0.c
index dcc280046bd..cb4068aee03 100644
--- a/lib/csu/alpha/crt0.c
+++ b/lib/csu/alpha/crt0.c
@@ -1,5 +1,5 @@
/* $NetBSD: crt0.c,v 1.1 1996/09/12 16:59:02 cgd Exp $ */
-
+/* $OpenBSD: crt0.c,v 1.2 1997/06/24 17:15:49 tholo Exp $ */
/*
* Copyright (c) 1995 Christopher G. Demetriou
* All rights reserved.
@@ -31,6 +31,10 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+#if defined(LIBC_SCCS) && !defined(lint)
+static char rcsid[] = "$OpenBSD: crt0.c,v 1.2 1997/06/24 17:15:49 tholo Exp $";
+#endif /* LIBC_SCCS and not lint */
+
#ifdef ECOFF_COMPAT
#undef DYNAMIC
#endif
diff --git a/lib/csu/i386/crt0.c b/lib/csu/i386/crt0.c
index d38f3bced66..e1f185b841d 100644
--- a/lib/csu/i386/crt0.c
+++ b/lib/csu/i386/crt0.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: crt0.c,v 1.2 1996/12/21 22:23:36 millert Exp $ */
+/* $OpenBSD: crt0.c,v 1.3 1997/06/24 17:15:49 tholo Exp $ */
/* $NetBSD: crt0.c,v 1.20 1995/06/03 13:16:08 pk Exp $ */
/*
@@ -34,7 +34,7 @@
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "%W% (Erasmus) %G%";
+static char rcsid[] = "$OpenBSD: crt0.c,v 1.3 1997/06/24 17:15:49 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/param.h>
diff --git a/lib/csu/m68k/crt0.c b/lib/csu/m68k/crt0.c
index 3f08eab70b7..a864ed22dd7 100644
--- a/lib/csu/m68k/crt0.c
+++ b/lib/csu/m68k/crt0.c
@@ -1,4 +1,5 @@
/* $NetBSD: crt0.c,v 1.14 1995/06/03 13:16:11 pk Exp $ */
+/* $OpenBSD: crt0.c,v 1.2 1997/06/24 17:15:50 tholo Exp $ */
/*
* Copyright (c) 1993 Paul Kranenburg
* All rights reserved.
@@ -32,7 +33,7 @@
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "%W% (Erasmus) %G%";
+static char rcsid[] = "$OpenBSD: crt0.c,v 1.2 1997/06/24 17:15:50 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/param.h>
diff --git a/lib/csu/mips/crt0.c b/lib/csu/mips/crt0.c
index e282b481daa..f96ac19b289 100644
--- a/lib/csu/mips/crt0.c
+++ b/lib/csu/mips/crt0.c
@@ -1,4 +1,5 @@
/* $NetBSD: crt0.c,v 1.7 1995/06/03 13:16:15 pk Exp $ */
+/* $OpenBSD: crt0.c,v 1.2 1997/06/24 17:15:51 tholo Exp $ */
/*
* Copyright (c) 1993 Paul Kranenburg
* All rights reserved.
@@ -31,8 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char sccsid[] = "@(#)crt0.c 5.7 (Berkeley) 7/3/91"; */
-static char rcsid[] = "$Id: crt0.c,v 1.1 1996/05/19 20:34:32 pefo Exp $";
+static char rcsid[] = "$OpenBSD: crt0.c,v 1.2 1997/06/24 17:15:51 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/param.h>
diff --git a/lib/csu/mvme88k/crt0.c b/lib/csu/mvme88k/crt0.c
index 28f6b5292fe..3df266bd530 100644
--- a/lib/csu/mvme88k/crt0.c
+++ b/lib/csu/mvme88k/crt0.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: crt0.c,v 1.4 1997/06/24 17:15:51 tholo Exp $ */
+
/*
* Mach Operating System
* Copyright (c) 1991, 1992 Carnegie Mellon University
@@ -25,6 +27,10 @@
* the rights to redistribute these changes.
*/
+#if defined(LIBC_SCCS) && !defined(lint)
+static char rcsid[] = "$OpenBSD: crt0.c,v 1.4 1997/06/24 17:15:51 tholo Exp $";
+#endif /* LIBC_SCCS and not lint */
+
/*
* Author : Jeffrey Friedl
* Created: July 1992
diff --git a/lib/csu/ns32k/crt0.c b/lib/csu/ns32k/crt0.c
index e4fa31522d3..5b7b80102e4 100644
--- a/lib/csu/ns32k/crt0.c
+++ b/lib/csu/ns32k/crt0.c
@@ -1,4 +1,5 @@
/* $NetBSD: crt0.c,v 1.7 1995/06/03 13:16:15 pk Exp $ */
+/* $OpenBSD: crt0.c,v 1.2 1997/06/24 17:15:52 tholo Exp $ */
/*
* Copyright (c) 1993 Paul Kranenburg
* All rights reserved.
@@ -31,8 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-/*static char sccsid[] = "@(#)crt0.c 5.7 (Berkeley) 7/3/91"; */
-static char rcsid[] = "$Id: crt0.c,v 1.1 1995/10/18 08:41:18 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: crt0.c,v 1.2 1997/06/24 17:15:52 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/param.h>
diff --git a/lib/csu/sparc/crt0.c b/lib/csu/sparc/crt0.c
index 45dce4e521a..3bd03b1e914 100644
--- a/lib/csu/sparc/crt0.c
+++ b/lib/csu/sparc/crt0.c
@@ -1,4 +1,5 @@
/* $NetBSD: crt0.c,v 1.15 1995/06/15 21:41:55 pk Exp $ */
+/* $OpenBSD: crt0.c,v 1.2 1997/06/24 17:15:53 tholo Exp $ */
/*
* Copyright (c) 1993 Paul Kranenburg
* All rights reserved.
@@ -32,7 +33,7 @@
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "%W% (Erasmus) %G%";
+static char rcsid[] = "$OpenBSD: crt0.c,v 1.2 1997/06/24 17:15:53 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/param.h>
diff --git a/lib/csu/vax/crt0.c b/lib/csu/vax/crt0.c
index 5c53d6b94e9..375a2031000 100644
--- a/lib/csu/vax/crt0.c
+++ b/lib/csu/vax/crt0.c
@@ -1,4 +1,5 @@
/* $NetBSD: crt0.c,v 1.1.2.1 1995/10/15 19:40:04 ragge Exp $ */
+/* $OpenBSD: crt0.c,v 1.2 1997/06/24 17:15:54 tholo Exp $ */
/*
* Copyright (c) 1993 Paul Kranenburg
* All rights reserved.
@@ -32,7 +33,7 @@
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "%W% (Erasmus) %G%";
+static char rcsid[] = "$OpenBSD: crt0.c,v 1.2 1997/06/24 17:15:54 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/param.h>