summaryrefslogtreecommitdiff
path: root/lib/libc/locale
diff options
context:
space:
mode:
authorkstailey <kstailey@cvs.openbsd.org>1997-07-23 21:14:42 +0000
committerkstailey <kstailey@cvs.openbsd.org>1997-07-23 21:14:42 +0000
commit249d724c6a5d7357642a1644e5a96bd14a19d322 (patch)
tree49b14114e059cbe2e018b271030529dc679aaf7e /lib/libc/locale
parentcb8b7f096273b06da90731566ce40cb880c584a1 (diff)
tabify + trailing blanks
Diffstat (limited to 'lib/libc/locale')
-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.c8
-rw-r--r--lib/libc/locale/nl_langinfo.c4
6 files changed, 14 insertions, 14 deletions
diff --git a/lib/libc/locale/_def_messages.c b/lib/libc/locale/_def_messages.c
index 81cc26c4d87..cff748b6be0 100644
--- a/lib/libc/locale/_def_messages.c
+++ b/lib/libc/locale/_def_messages.c
@@ -4,13 +4,13 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: _def_messages.c,v 1.2 1996/08/19 08:28:12 tholo Exp $";
+static char rcsid[] = "$OpenBSD: _def_messages.c,v 1.3 1997/07/23 21:14:38 kstailey Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/localedef.h>
#include <locale.h>
-const _MessagesLocale _DefaultMessagesLocale =
+const _MessagesLocale _DefaultMessagesLocale =
{
"^[Yn]",
"^[Nn]",
diff --git a/lib/libc/locale/_def_monetary.c b/lib/libc/locale/_def_monetary.c
index 3ed225a25f2..653424309a9 100644
--- a/lib/libc/locale/_def_monetary.c
+++ b/lib/libc/locale/_def_monetary.c
@@ -4,14 +4,14 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: _def_monetary.c,v 1.2 1996/08/19 08:28:14 tholo Exp $";
+static char rcsid[] = "$OpenBSD: _def_monetary.c,v 1.3 1997/07/23 21:14:38 kstailey Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/localedef.h>
#include <limits.h>
#include <locale.h>
-const _MonetaryLocale _DefaultMonetaryLocale =
+const _MonetaryLocale _DefaultMonetaryLocale =
{
"",
"",
diff --git a/lib/libc/locale/_def_numeric.c b/lib/libc/locale/_def_numeric.c
index 558b02ee902..26320ebd8b0 100644
--- a/lib/libc/locale/_def_numeric.c
+++ b/lib/libc/locale/_def_numeric.c
@@ -4,13 +4,13 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: _def_numeric.c,v 1.2 1996/08/19 08:28:16 tholo Exp $";
+static char rcsid[] = "$OpenBSD: _def_numeric.c,v 1.3 1997/07/23 21:14:39 kstailey Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/localedef.h>
#include <locale.h>
-const _NumericLocale _DefaultNumericLocale =
+const _NumericLocale _DefaultNumericLocale =
{
".",
"",
diff --git a/lib/libc/locale/_def_time.c b/lib/libc/locale/_def_time.c
index 613fc3ecb9c..99cc4011fce 100644
--- a/lib/libc/locale/_def_time.c
+++ b/lib/libc/locale/_def_time.c
@@ -4,13 +4,13 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: _def_time.c,v 1.2 1996/08/19 08:28:18 tholo Exp $";
+static char rcsid[] = "$OpenBSD: _def_time.c,v 1.3 1997/07/23 21:14:40 kstailey Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/localedef.h>
#include <locale.h>
-const _TimeLocale _DefaultTimeLocale =
+const _TimeLocale _DefaultTimeLocale =
{
{
"Sun","Mon","Tue","Wed","Thu","Fri","Sat",
diff --git a/lib/libc/locale/localeconv.c b/lib/libc/locale/localeconv.c
index f5ddb39a0b7..93d708bb434 100644
--- a/lib/libc/locale/localeconv.c
+++ b/lib/libc/locale/localeconv.c
@@ -4,19 +4,19 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: localeconv.c,v 1.2 1996/08/19 08:28:20 tholo Exp $";
+static char *rcsid = "$OpenBSD: localeconv.c,v 1.3 1997/07/23 21:14:40 kstailey Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/localedef.h>
#include <locale.h>
-/*
+/*
* The localeconv() function constructs a struct lconv from the current
* monetary and numeric locales.
*
* Because localeconv() may be called many times (especially by library
- * routines like printf() & strtod()), the approprate members of the
- * lconv structure are computed only when the monetary or numeric
+ * routines like printf() & strtod()), the approprate members of the
+ * lconv structure are computed only when the monetary or numeric
* locale has been changed.
*/
int __mlocale_changed = 1;
diff --git a/lib/libc/locale/nl_langinfo.c b/lib/libc/locale/nl_langinfo.c
index 0c432303fb0..42e31f37704 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 = "$OpenBSD: nl_langinfo.c,v 1.2 1996/08/19 08:28:23 tholo Exp $";
+static char *rcsid = "$OpenBSD: nl_langinfo.c,v 1.3 1997/07/23 21:14:41 kstailey Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/localedef.h>
@@ -21,7 +21,7 @@ nl_langinfo(item)
switch (item) {
case D_T_FMT:
s = _CurrentTimeLocale->d_t_fmt;
- break;
+ break;
case D_FMT:
s = _CurrentTimeLocale->d_fmt;
break;