diff options
Diffstat (limited to 'locale')
-rw-r--r-- | locale/Makefile | 2 | ||||
-rw-r--r-- | locale/Versions | 3 | ||||
-rw-r--r-- | locale/nl_langinfo_l.c | 20 |
3 files changed, 24 insertions, 1 deletions
diff --git a/locale/Makefile b/locale/Makefile index ce9747bd00..2b278d574f 100644 --- a/locale/Makefile +++ b/locale/Makefile @@ -35,7 +35,7 @@ distribute = localeinfo.h categories.def iso-639.def iso-3166.def \ locfile.h charmap.h repertoire.h localedef.h \ 3level.h) routines = setlocale findlocale loadlocale localeconv nl_langinfo \ - mb_cur_max codeset_name \ + nl_langinfo_l mb_cur_max codeset_name \ newlocale duplocale freelocale categories = ctype messages monetary numeric time paper name \ address telephone measurement identification collate diff --git a/locale/Versions b/locale/Versions index e100c6b623..9c3bda4ffd 100644 --- a/locale/Versions +++ b/locale/Versions @@ -44,5 +44,8 @@ libc { # more functions from the experimental locale implementation __wctrans_l; + + # missing function from the experimental locale implementation + __nl_langinfo_l; } } diff --git a/locale/nl_langinfo_l.c b/locale/nl_langinfo_l.c new file mode 100644 index 0000000000..d333350d94 --- /dev/null +++ b/locale/nl_langinfo_l.c @@ -0,0 +1,20 @@ +/* Copyright (C) 2000 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 + modify it under the terms of the GNU Library General Public License as + published by the Free Software Foundation; either version 2 of the + License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with the GNU C Library; see the file COPYING.LIB. If not, + write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. */ + +#define USE_IN_EXTENDED_LOCALE_MODEL 1 +#include <nl_langinfo.c> |