From: Roland McGrath Date: Thu, 28 Mar 1996 19:34:47 +0000 (+0000) Subject: * locale/locale.h (LC_*): Values reordered to match Linux libc. X-Git-Tag: cvs/libc-960329~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a141dd342d3fc7590a5cc55cdeab6d702ed31790;p=platform%2Fupstream%2Fglibc.git * locale/locale.h (LC_*): Values reordered to match Linux libc. --- diff --git a/ChangeLog b/ChangeLog index 73be9b7..1d7f484 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ Thu Mar 28 14:22:51 1996 Roland McGrath + * 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 1fc867a..b6ca4bc 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