diff options
author | Chris Sutcliffe <ir0nh34d@users.sourceforge.net> | 2008-03-04 02:42:44 +0000 |
---|---|---|
committer | Chris Sutcliffe <ir0nh34d@users.sourceforge.net> | 2008-03-04 02:42:44 +0000 |
commit | 4d35ce43511cf54c0e7f0f74313cc483a56606ce (patch) | |
tree | 7350fcf74daea7faac988ec67e7b74b99e29f595 | |
parent | 9ae00e9e07beb3bca4d81e18dd5209e0d9234644 (diff) | |
download | cygnal-4d35ce43511cf54c0e7f0f74313cc483a56606ce.tar.gz cygnal-4d35ce43511cf54c0e7f0f74313cc483a56606ce.tar.bz2 cygnal-4d35ce43511cf54c0e7f0f74313cc483a56606ce.zip |
2008-02-28 Joseph Myers <joseph@codesourcery.com>
* include/complex.h: Don't condition contents on C99 or not
__STRICT_ANSI__.
-rw-r--r-- | winsup/mingw/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/mingw/include/complex.h | 5 |
2 files changed, 5 insertions, 5 deletions
diff --git a/winsup/mingw/ChangeLog b/winsup/mingw/ChangeLog index 67d775a1d..37f23dab9 100644 --- a/winsup/mingw/ChangeLog +++ b/winsup/mingw/ChangeLog @@ -1,3 +1,8 @@ +2008-02-28 Joseph Myers <joseph@codesourcery.com> + + * include/complex.h: Don't condition contents on C99 or not + __STRICT_ANSI__. + 2008-02-01 Brian Dessent <brian@dessent.net> * Makefile.in: Add rules to generate multiple versions of libmoldname.a for diff --git a/winsup/mingw/include/complex.h b/winsup/mingw/include/complex.h index 2fd73a12e..93f2a80c5 100644 --- a/winsup/mingw/include/complex.h +++ b/winsup/mingw/include/complex.h @@ -24,9 +24,6 @@ /* All the headers include this file. */ #include <_mingw.h> -#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) \ - || !defined __STRICT_ANSI__ - /* These macros are specified by C99 standard */ #ifndef __cplusplus @@ -199,7 +196,5 @@ __CRT_INLINE long double __MINGW_ATTRIB_CONST cargl (long double _Complex _Z) } #endif -#endif /* __STDC_VERSION__ >= 199901L */ - #endif /* _COMPLEX_H */ |