From 1e1b6f8003e392a63a01f81fa99ad86ecc28ad66 Mon Sep 17 00:00:00 2001 From: Jeff Johnston Date: Tue, 20 Oct 2009 16:44:11 +0000 Subject: 2009-10-16 Jeff Johnston * libc/include/sys/config.h[__CYGWIN__]: Set __USE_XOPEN2K flag if not __STRICT_ANSI__ or stdc version C99 or greater. * libc/include/stdio.h[__STRICT_ANSI__]: Add __USE_XOPEN2K check for fseeko and ftello prototypes. --- newlib/libc/include/stdio.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'newlib/libc/include/stdio.h') diff --git a/newlib/libc/include/stdio.h b/newlib/libc/include/stdio.h index cf0be47b9..b9c8745bc 100644 --- a/newlib/libc/include/stdio.h +++ b/newlib/libc/include/stdio.h @@ -232,7 +232,7 @@ int _EXFUN(sprintf, (char *, const char *, ...) int _EXFUN(remove, (const char *)); int _EXFUN(rename, (const char *, const char *)); #endif -#ifndef __STRICT_ANSI__ +#if !defined(__STRICT_ANSI__) || defined(__USE_XOPEN2K) #ifdef _COMPILING_NEWLIB int _EXFUN(fseeko, (FILE *, _off_t, int)); _off_t _EXFUN(ftello, ( FILE *)); @@ -240,6 +240,8 @@ _off_t _EXFUN(ftello, ( FILE *)); int _EXFUN(fseeko, (FILE *, off_t, int)); off_t _EXFUN(ftello, ( FILE *)); #endif +#endif +#if !defined(__STRICT_ANSI__) || (__STDC_VERSION__ >= 199901L) #ifndef _REENT_ONLY int _EXFUN(asiprintf, (char **, const char *, ...) _ATTRIBUTE ((__format__ (__printf__, 2, 3)))); -- cgit v1.2.3