]> Zhao Yanbai Git Server - minix.git/commitdiff
add LC_MESSAGES
authorBen Gras <ben@minix3.org>
Tue, 22 Jun 2010 09:31:16 +0000 (09:31 +0000)
committerBen Gras <ben@minix3.org>
Tue, 22 Jun 2010 09:31:16 +0000 (09:31 +0000)
include/locale.h
lib/libc/ansi/setlocale.c

index e48add267c893d9c5a69558a6c9d09a58bfb032f..ed1d042bd5b86ac63f6a2b6cda9c858769c2c23e 100644 (file)
@@ -39,6 +39,7 @@ struct lconv {
 #define LC_MONETARY        4
 #define LC_NUMERIC         5
 #define LC_TIME            6
+#define LC_MESSAGES        7
 
 /* Function Prototypes. */
 _PROTOTYPE( char *setlocale, (int _category, const char *_locale)      );
index 87bb74a551e27bfe5aca889aa701edb26126c3f2..8d098f21f085e1202c84cf980acf08d94e6b5729 100644 (file)
@@ -21,6 +21,7 @@ setlocale(int category, const char *locale)
        case LC_TIME:
        case LC_NUMERIC:
        case LC_MONETARY:
+       case LC_MESSAGES:
                return *locale ? (char *)locale : "C";
        default:
                return (char *)NULL;