summaryrefslogtreecommitdiffstats
path: root/lib/libc/locale
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>2001-02-10 02:00:56 +0000
committerache <ache@FreeBSD.org>2001-02-10 02:00:56 +0000
commitb8bd5d2b4448a538b517e75ccd9023c33f6cc574 (patch)
treea7952da6bc8704ce0fbf5030e36beef7eb434977 /lib/libc/locale
parent0ec6d3ee51e24e43ec6ad9463cbebee9edf3aa08 (diff)
downloadFreeBSD-src-b8bd5d2b4448a538b517e75ccd9023c33f6cc574.zip
FreeBSD-src-b8bd5d2b4448a538b517e75ccd9023c33f6cc574.tar.gz
Use __XSTRING(CHAR_MAX) instead of "127" and strtol() base 0 to parse it (0x7f)
Diffstat (limited to 'lib/libc/locale')
-rw-r--r--lib/libc/locale/lmonetary.c4
-rw-r--r--lib/libc/locale/lnumeric.c4
-rw-r--r--lib/libc/locale/localeconv.c2
3 files changed, 7 insertions, 3 deletions
diff --git a/lib/libc/locale/lmonetary.c b/lib/libc/locale/lmonetary.c
index 45af48a..3db39fa 100644
--- a/lib/libc/locale/lmonetary.c
+++ b/lib/libc/locale/lmonetary.c
@@ -26,6 +26,8 @@
* $FreeBSD$
*/
+#include <limits.h>
+#include <sys/cdefs.h>
#include "lmonetary.h"
#include "ldpart.h"
@@ -34,7 +36,7 @@ extern int __mlocale_changed;
#define LCMONETARY_SIZE (sizeof(struct lc_monetary_T) / sizeof(char *))
static char empty[] = "";
-static char numempty[] = "127"; /* XXX: CHAR_MAX supposed here */
+static char numempty[] = __XSTRING(CHAR_MAX);
static const struct lc_monetary_T _C_monetary_locale = {
empty , /* int_curr_symbol */
diff --git a/lib/libc/locale/lnumeric.c b/lib/libc/locale/lnumeric.c
index cfe3f5b..60949b0 100644
--- a/lib/libc/locale/lnumeric.c
+++ b/lib/libc/locale/lnumeric.c
@@ -26,6 +26,8 @@
* $FreeBSD$
*/
+#include <limits.h>
+#include <sys/cdefs.h>
#include "lnumeric.h"
#include "ldpart.h"
@@ -33,7 +35,7 @@ extern int __nlocale_changed;
#define LCNUMERIC_SIZE (sizeof(struct lc_numeric_T) / sizeof(char *))
-static char numempty[] = "127"; /* XXX: CHAR_MAX supposed here */
+static char numempty[] = __XSTRING(CHAR_MAX);
static const struct lc_numeric_T _C_numeric_locale = {
".", /* decimal_point */
diff --git a/lib/libc/locale/localeconv.c b/lib/libc/locale/localeconv.c
index 16fa539..6e62388 100644
--- a/lib/libc/locale/localeconv.c
+++ b/lib/libc/locale/localeconv.c
@@ -51,7 +51,7 @@ int __nlocale_changed = 1;
static char
cnv(char *str) {
- return (char)strtol(str, NULL, 10);
+ return (char)strtol(str, NULL, 0);
}
/*
OpenPOWER on IntegriCloud