OSDN Git Service

* libc/stdlib/mallocr.c: Undefine windows preprocessor variables when compiling
authorcgf <cgf>
Tue, 30 Jan 2001 04:04:58 +0000 (04:04 +0000)
committercgf <cgf>
Tue, 30 Jan 2001 04:04:58 +0000 (04:04 +0000)
under Cygwin.

newlib/ChangeLog
newlib/libc/stdlib/mallocr.c

index 994eee9..3f29bec 100644 (file)
@@ -1,3 +1,8 @@
+Mon Jan 29 23:03:06 2001  Christopher Faylor <cgf@cygnus.com>
+
+       * libc/stdlib/mallocr.c: Undefine windows preprocessor variables when
+       compiling under Cygwin.
+
 2001-01-29  Jeff Johnston  <jjohnstn@redhat.com>
 
        * libc/include/math.h (signgam): Change to errno-like solution
index c2b2fb9..d269dd3 100644 (file)
@@ -304,6 +304,11 @@ extern "C" {
 #define MALLOC_LOCK __malloc_lock(reent_ptr)
 #define MALLOC_UNLOCK __malloc_unlock(reent_ptr)
 
+#ifdef __CYGWIN__
+# undef _WIN32
+# undef WIN32
+#endif
+
 #ifndef _WIN32
 #ifdef SMALL_MEMORY
 #define malloc_getpagesize (128)