From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 53597 invoked by alias); 23 Aug 2016 10:43:56 -0000 Mailing-List: contact newlib-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: newlib-cvs-owner@sourceware.org Received: (qmail 53566 invoked by uid 9078); 23 Aug 2016 10:43:55 -0000 Date: Tue, 23 Aug 2016 10:43:00 -0000 Message-ID: <20160823104355.53563.qmail@sourceware.org> Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Corinna Vinschen To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] Remove erroneous POSIX guards for reentrant locale functions X-Act-Checkin: newlib-cygwin X-Git-Author: Corinna Vinschen X-Git-Refname: refs/heads/master X-Git-Oldrev: 2fb5e3dfb2603988640c87d69596f470900e1ff5 X-Git-Newrev: 3eace743b2e9bc34a6ee3e51aa241a45c91159b2 X-SW-Source: 2016-q3/txt/msg00060.txt.bz2 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=3eace743b2e9bc34a6ee3e51aa241a45c91159b2 commit 3eace743b2e9bc34a6ee3e51aa241a45c91159b2 Author: Corinna Vinschen Date: Tue Aug 23 12:39:42 2016 +0200 Remove erroneous POSIX guards for reentrant locale functions Signed-off-by: Corinna Vinschen Diff: --- newlib/libc/include/locale.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/newlib/libc/include/locale.h b/newlib/libc/include/locale.h index 6b3b788..4fb7875 100644 --- a/newlib/libc/include/locale.h +++ b/newlib/libc/include/locale.h @@ -71,12 +71,10 @@ struct _reent; char *_EXFUN(_setlocale_r,(struct _reent *, int, const char *)); struct lconv *_EXFUN(_localeconv_r,(struct _reent *)); -#if __POSIX_VISIBLE >= 200809 locale_t _newlocale_r (struct _reent *, int, const char *, locale_t); void _freelocale_r (struct _reent *, locale_t); locale_t _duplocale_r (struct _reent *, locale_t); locale_t _uselocale_r (struct _reent *, locale_t); -#endif /* __POSIX_VISIBLE >= 200809 */ #ifndef _REENT_ONLY