summaryrefslogtreecommitdiff
path: root/lib/libc/locale
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/locale
parent796010265f845625013cfa4bb2f73a26d43f30d2 (diff)
Fix RCS ids
Make sure everything uses {SYS,}LIBC_SCCS properly
Diffstat (limited to 'lib/libc/locale')
-rw-r--r--lib/libc/locale/Makefile.inc3
-rw-r--r--lib/libc/locale/_def_messages.c4
-rw-r--r--lib/libc/locale/_def_monetary.c4
-rw-r--r--lib/libc/locale/_def_numeric.c4
-rw-r--r--lib/libc/locale/_def_time.c4
-rw-r--r--lib/libc/locale/localeconv.c2
-rw-r--r--lib/libc/locale/nl_langinfo.32
-rw-r--r--lib/libc/locale/nl_langinfo.c2
-rw-r--r--lib/libc/locale/setlocale.c2
9 files changed, 21 insertions, 6 deletions
diff --git a/lib/libc/locale/Makefile.inc b/lib/libc/locale/Makefile.inc
index 32f7c25abc5..8d2dbb3e289 100644
--- a/lib/libc/locale/Makefile.inc
+++ b/lib/libc/locale/Makefile.inc
@@ -1,5 +1,4 @@
-# from: @(#)Makefile.inc 5.1 (Berkeley) 2/18/91
-# $Id: Makefile.inc,v 1.1 1995/10/18 08:42:01 deraadt Exp $
+# $OpenBSD: Makefile.inc,v 1.2 1996/08/19 08:28:10 tholo Exp $
# locale sources
.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}/locale ${.CURDIR}/locale
diff --git a/lib/libc/locale/_def_messages.c b/lib/libc/locale/_def_messages.c
index 0be3857498d..81cc26c4d87 100644
--- a/lib/libc/locale/_def_messages.c
+++ b/lib/libc/locale/_def_messages.c
@@ -3,6 +3,10 @@
* Public domain.
*/
+#if defined(LIBC_SCCS) && !defined(lint)
+static char rcsid[] = "$OpenBSD: _def_messages.c,v 1.2 1996/08/19 08:28:12 tholo Exp $";
+#endif /* LIBC_SCCS and not lint */
+
#include <sys/localedef.h>
#include <locale.h>
diff --git a/lib/libc/locale/_def_monetary.c b/lib/libc/locale/_def_monetary.c
index e6baf8e6de2..3ed225a25f2 100644
--- a/lib/libc/locale/_def_monetary.c
+++ b/lib/libc/locale/_def_monetary.c
@@ -3,6 +3,10 @@
* Public domain.
*/
+#if defined(LIBC_SCCS) && !defined(lint)
+static char rcsid[] = "$OpenBSD: _def_monetary.c,v 1.2 1996/08/19 08:28:14 tholo Exp $";
+#endif /* LIBC_SCCS and not lint */
+
#include <sys/localedef.h>
#include <limits.h>
#include <locale.h>
diff --git a/lib/libc/locale/_def_numeric.c b/lib/libc/locale/_def_numeric.c
index 3b112a13ee4..558b02ee902 100644
--- a/lib/libc/locale/_def_numeric.c
+++ b/lib/libc/locale/_def_numeric.c
@@ -3,6 +3,10 @@
* Public domain.
*/
+#if defined(LIBC_SCCS) && !defined(lint)
+static char rcsid[] = "$OpenBSD: _def_numeric.c,v 1.2 1996/08/19 08:28:16 tholo Exp $";
+#endif /* LIBC_SCCS and not lint */
+
#include <sys/localedef.h>
#include <locale.h>
diff --git a/lib/libc/locale/_def_time.c b/lib/libc/locale/_def_time.c
index e81be09ddda..613fc3ecb9c 100644
--- a/lib/libc/locale/_def_time.c
+++ b/lib/libc/locale/_def_time.c
@@ -3,6 +3,10 @@
* Public domain.
*/
+#if defined(LIBC_SCCS) && !defined(lint)
+static char rcsid[] = "$OpenBSD: _def_time.c,v 1.2 1996/08/19 08:28:18 tholo Exp $";
+#endif /* LIBC_SCCS and not lint */
+
#include <sys/localedef.h>
#include <locale.h>
diff --git a/lib/libc/locale/localeconv.c b/lib/libc/locale/localeconv.c
index a61bc70d412..f5ddb39a0b7 100644
--- a/lib/libc/locale/localeconv.c
+++ b/lib/libc/locale/localeconv.c
@@ -4,7 +4,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$Id: localeconv.c,v 1.1 1995/10/18 08:42:01 deraadt Exp $";
+static char *rcsid = "$OpenBSD: localeconv.c,v 1.2 1996/08/19 08:28:20 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/localedef.h>
diff --git a/lib/libc/locale/nl_langinfo.3 b/lib/libc/locale/nl_langinfo.3
index b9dcb04d24f..ed7809fe7f3 100644
--- a/lib/libc/locale/nl_langinfo.3
+++ b/lib/libc/locale/nl_langinfo.3
@@ -1,4 +1,4 @@
-.\" $NetBSD: nl_langinfo.3,v 1.3 1996/02/14 19:21:54 jtc Exp $
+.\" $OpenBSD: nl_langinfo.3,v 1.3 1996/08/19 08:28:21 tholo Exp $
.\"
.\" Written by J.T. Conklin <jtc@netbsd.org>.
.\" Public domain.
diff --git a/lib/libc/locale/nl_langinfo.c b/lib/libc/locale/nl_langinfo.c
index 3b11bb398f3..0c432303fb0 100644
--- a/lib/libc/locale/nl_langinfo.c
+++ b/lib/libc/locale/nl_langinfo.c
@@ -4,7 +4,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$Id: nl_langinfo.c,v 1.1 1995/10/18 08:42:01 deraadt Exp $";
+static char *rcsid = "$OpenBSD: nl_langinfo.c,v 1.2 1996/08/19 08:28:23 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/localedef.h>
diff --git a/lib/libc/locale/setlocale.c b/lib/libc/locale/setlocale.c
index 251f4ecb8fd..5f34ca19d10 100644
--- a/lib/libc/locale/setlocale.c
+++ b/lib/libc/locale/setlocale.c
@@ -35,7 +35,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char sccsid[] = "@(#)setlocale.c 8.1 (Berkeley) 7/4/93";
+static char rcsid[] = "$OpenBSD: setlocale.c,v 1.2 1996/08/19 08:28:24 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/localedef.h>