From 966f75d4fbb7f395c60ffb3cd5c7948391628ade Mon Sep 17 00:00:00 2001 From: Martin Kraemer Date: Thu, 28 Nov 2002 09:19:16 +0000 Subject: [PATCH] Portability: avoid warnings on FreeBSD --- ext/gd/gdcache.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/gd/gdcache.h b/ext/gd/gdcache.h index 06bf0ee6ce..87ab305aba 100644 --- a/ext/gd/gdcache.h +++ b/ext/gd/gdcache.h @@ -40,7 +40,7 @@ /* header */ /*********************************************************/ -#if (!defined _OSD_POSIX) && HAVE_MALLOC_H +#if (!defined(_OSD_POSIX) && !defined(__FreeBSD__)) && HAVE_MALLOC_H #include #else #include /* BS2000/OSD defines malloc() & friends in stdlib.h */ -- 2.50.1