(my_setlocale): Guard definition within #ifdef ENABLE_NLS.
authorJim Meyering <jim@meyering.net>
Sat, 1 Aug 1998 15:47:26 +0000 (15:47 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 1 Aug 1998 15:47:26 +0000 (15:47 +0000)
src/sort.c

index c988231..ce5aa15 100644 (file)
@@ -2429,7 +2429,7 @@ key_init (struct keyfield *key)
 /* strdup and return the result of setlocale, but guard against a NULL
    return value.  If setlocale returns NULL, strdup FAIL_VAL instead.  */
 
-#if !defined __GLIBC__ || __GLIBC__ < 2
+#if defined ENABLE_NLS && ( !defined __GLIBC__ || __GLIBC__ < 2 )
 static inline char *
 my_setlocale (const char *locale, const char *fail_val)
 {