summaryrefslogtreecommitdiffstats
path: root/gettext-runtime/intl/vasnprintf.c
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2009-12-12 16:07:06 +0100
committerBruno Haible <bruno@clisp.org>2009-12-12 16:08:01 +0100
commit384ec52191e91bf1326b9a526f0b30e247443eed (patch)
tree94a0edc0620dc5f699c90339051ac293c4379e0e /gettext-runtime/intl/vasnprintf.c
parent7abd428fe7be9424ac61e7bfe8691f5e4f1caa9c (diff)
downloadexternal_gettext-384ec52191e91bf1326b9a526f0b30e247443eed.zip
external_gettext-384ec52191e91bf1326b9a526f0b30e247443eed.tar.gz
external_gettext-384ec52191e91bf1326b9a526f0b30e247443eed.tar.bz2
vasnprintf: Tiny optimization.
Diffstat (limited to 'gettext-runtime/intl/vasnprintf.c')
-rw-r--r--gettext-runtime/intl/vasnprintf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gettext-runtime/intl/vasnprintf.c b/gettext-runtime/intl/vasnprintf.c
index 791376b..d64cec2 100644
--- a/gettext-runtime/intl/vasnprintf.c
+++ b/gettext-runtime/intl/vasnprintf.c
@@ -262,10 +262,10 @@ decimal_point_char (void)
{
const char *point;
/* Determine it in a multithread-safe way. We know nl_langinfo is
- multithread-safe on glibc systems, but is not required to be multithread-
- safe by POSIX. sprintf(), however, is multithread-safe. localeconv()
- is rarely multithread-safe. */
-# if HAVE_NL_LANGINFO && __GLIBC__
+ multithread-safe on glibc systems and MacOS X systems, but is not required
+ to be multithread-safe by POSIX. sprintf(), however, is multithread-safe.
+ localeconv() is rarely multithread-safe. */
+# if HAVE_NL_LANGINFO && (__GLIBC__ || (defined __APPLE__ && defined __MACH__))
point = nl_langinfo (RADIXCHAR);
# elif 1
char pointbuf[5];