summaryrefslogtreecommitdiff
path: root/src/ne_alloc.h
diff options
context:
space:
mode:
authorjoe <joe@61a7d7f5-40b7-0310-9c16-bb0ea8cb1845>2008-02-06 21:19:35 +0000
committerjoe <joe@61a7d7f5-40b7-0310-9c16-bb0ea8cb1845>2008-02-06 21:19:35 +0000
commit957c5e63b0f69c5b6b088f0ef69703be986760cc (patch)
treef738bd6c5dd311da01ad5feec254269a72123caa /src/ne_alloc.h
parentfd474533dee394e3daa1fc416cdba3fcf01ee698 (diff)
downloadneon-957c5e63b0f69c5b6b088f0ef69703be986760cc.tar.gz
* src/ne_alloc.h: Include stdlib.h on all platforms to
pick up free() definition. git-svn-id: http://svn.webdav.org/repos/projects/neon/trunk@1327 61a7d7f5-40b7-0310-9c16-bb0ea8cb1845
Diffstat (limited to 'src/ne_alloc.h')
-rw-r--r--src/ne_alloc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ne_alloc.h b/src/ne_alloc.h
index a0421f0..58ecbe1 100644
--- a/src/ne_alloc.h
+++ b/src/ne_alloc.h
@@ -22,9 +22,9 @@
#ifndef NE_ALLOC_H
#define NE_ALLOC_H
-#ifdef WIN32
#include <stdlib.h>
-#else
+
+#ifndef WIN32
#include <sys/types.h>
#endif