]> sourceware.org Git - newlib-cygwin.git/commitdiff
* include/math.h: Guard ISO C99 additions with __cplusplus
authorDanny Smith <dannysmith@users.sourceforge.net>
Mon, 27 Oct 2003 23:51:37 +0000 (23:51 +0000)
committerDanny Smith <dannysmith@users.sourceforge.net>
Mon, 27 Oct 2003 23:51:37 +0000 (23:51 +0000)
not __GLIBCPP__.

winsup/mingw/ChangeLog
winsup/mingw/include/math.h

index 4268822f3d7310a350d54a6ee38cae9bbe167d05..89499cbe6f060461b729c07e08d2701a6b4a4de1 100644 (file)
@@ -1,3 +1,8 @@
+2003-10-27  Danny Smith  <dannysmith@users.sourceforge.net>
+
+       * include/math.h: Guard ISO C99 additions with __cplusplus
+       not __GLIBCPP__.
+
 2003-10-21  Danny Smith  <dannysmith@users.sourceforge.net>
 
        * include/_mingw.h: Define __attribute__((x)) to nothing
index af6a40f22debb3a76c3ca6a26c4b47a300f08830..96405229d3ce756dbbf24e34e607b88712f28485 100644 (file)
@@ -241,7 +241,7 @@ _CRTIMP int __cdecl fpclass (double);
 
 #ifndef __NO_ISOCEXT
 #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) \
-       || !defined __STRICT_ANSI__ || defined __GLIBCPP__
+       || !defined __STRICT_ANSI__ || defined __cplusplus
 
 #define NAN (0.0F/0.0F)
 #define HUGE_VALF (1.0F/0.0F)
This page took 0.03409 seconds and 5 git commands to generate.