* locale/locale.h (LC_*): Values reordered to match Linux libc.
authorRoland McGrath <roland@gnu.org>
Thu, 28 Mar 1996 19:34:47 +0000 (19:34 +0000)
committerRoland McGrath <roland@gnu.org>
Thu, 28 Mar 1996 19:34:47 +0000 (19:34 +0000)
ChangeLog
locale/locale.h

index 73be9b7..1d7f484 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 Thu Mar 28 14:22:51 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
 
+       * locale/locale.h (LC_*): Values reordered to match Linux libc.
+
        * sysdeps/mach/hurd/kill.c: If proc_pid2task gives us MACH_PORT_NULL
        the process is a zombie; send no messages and return success.
 
index 1fc867a..b6ca4bc 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1992, 1995 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1992, 1995, 1996 Free Software Foundation, Inc.
 This file is part of the GNU C Library.
 
 The GNU C Library is free software; you can redistribute it and/or
@@ -29,12 +29,12 @@ __BEGIN_DECLS
 
 /* These are the possibilities for the first argument to setlocale.
    The code assumes that LC_ALL is the highest value, and zero the lowest.  */
-#define        LC_COLLATE      0
-#define        LC_CTYPE        1
-#define        LC_MONETARY     2
-#define        LC_NUMERIC      3
-#define        LC_TIME         4
-#define        LC_MESSAGES     5
+#define LC_CTYPE        0
+#define LC_NUMERIC      1
+#define LC_TIME         2
+#define LC_COLLATE      3
+#define LC_MONETARY     4
+#define LC_MESSAGES     5
 #define        LC_ALL          6