summaryrefslogtreecommitdiff
path: root/src/ne_alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ne_alloc.c')
-rw-r--r--src/ne_alloc.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/ne_alloc.c b/src/ne_alloc.c
index 7d98bf2..d7eca98 100644
--- a/src/ne_alloc.c
+++ b/src/ne_alloc.c
@@ -76,14 +76,6 @@ void *ne_realloc(void *ptr, size_t len)
return ret;
}
-#ifdef WIN32
-/* Implemented only to ensure free is bound to the correct DLL. */
-void ne_free(void *ptr)
-{
- free(ptr);
-}
-#endif
-
char *ne_strdup(const char *s)
{
char *ret;