diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-02-26 02:23:50 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-02-26 02:23:50 +0000 |
commit | 77db439eaf8d88da3dfae342631384b143ce33e6 (patch) | |
tree | a0a12781bae58ef6519bc2672fcd3bf755beb235 /locale/xlocale.h | |
parent | 3e6b0a28ebc2319262b318790019558f78249c8b (diff) | |
download | glibc-77db439eaf8d88da3dfae342631384b143ce33e6.tar glibc-77db439eaf8d88da3dfae342631384b143ce33e6.tar.gz glibc-77db439eaf8d88da3dfae342631384b143ce33e6.tar.bz2 glibc-77db439eaf8d88da3dfae342631384b143ce33e6.zip |
* ctype/ctype.h: The *_l functions are in POSIX 2008.
* dirent/dirent.h: alphasort, dirfd, scandir, and fdopendir are in
POSIX 2008.
/proc/sys/kernel/rtsig_max doesn't exist anymore, use getrlimit
Diffstat (limited to 'locale/xlocale.h')
-rw-r--r-- | locale/xlocale.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/locale/xlocale.h b/locale/xlocale.h index 2b17d6973f..e879212b79 100644 --- a/locale/xlocale.h +++ b/locale/xlocale.h @@ -1,5 +1,5 @@ /* Definition of locale datatype. - Copyright (C) 1997,2000,02 Free Software Foundation, Inc. + Copyright (C) 1997,2000,2002,2009 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. @@ -39,4 +39,7 @@ typedef struct __locale_struct const char *__names[13]; } *__locale_t; +/* POSIX 2008 makes locale_t official. */ +typedef __locale_t locale_t; + #endif /* xlocale.h */ |