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 | |
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.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | locale/locale.h | 14 |
2 files changed, 9 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog index 73be9b7416..1d7f4846eb 100644 --- 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. 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 |