summaryrefslogtreecommitdiff
path: root/src/ne_alloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ne_alloc.h')
-rw-r--r--src/ne_alloc.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/ne_alloc.h b/src/ne_alloc.h
index 0322fa7..58ecbe1 100644
--- a/src/ne_alloc.h
+++ b/src/ne_alloc.h
@@ -48,12 +48,8 @@ void *ne_calloc(size_t size) ne_attribute_malloc;
void *ne_realloc(void *ptr, size_t s);
char *ne_strdup(const char *s) ne_attribute_malloc;
char *ne_strndup(const char *s, size_t n) ne_attribute_malloc;
-#ifdef WIN32
-void ne_free(void *ptr);
-#else
#define ne_free free
#endif
-#endif
NE_END_DECLS