diff options
author | Roland McGrath <roland@gnu.org> | 1996-03-28 19:34:47 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-03-28 19:34:47 +0000 |
commit | a141dd342d3fc7590a5cc55cdeab6d702ed31790 (patch) | |
tree | aff194f393565259234e8c691ead70cba8f69e52 /locale | |
parent | 8c1442d02fa18a1f008fab7f96ebec9abaec589b (diff) | |
download | glibc-a141dd342d3fc7590a5cc55cdeab6d702ed31790.tar.gz glibc-a141dd342d3fc7590a5cc55cdeab6d702ed31790.tar.xz glibc-a141dd342d3fc7590a5cc55cdeab6d702ed31790.zip |
* locale/locale.h (LC_*): Values reordered to match Linux libc.
Diffstat (limited to 'locale')
-rw-r--r-- | locale/locale.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/locale/locale.h b/locale/locale.h index 1fc867a9d4..b6ca4bcd93 100644 --- a/locale/locale.h +++ b/locale/locale.h @@ -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 |