Merge branch 'js/sequencer-wo-die'
[gitweb.git] / compat / nedmalloc / nedmalloc.c
index 677d1b2794321c7bd31bb5ba15c4bf8f2d06759e..1cc31c350223b84cd97939afccf1bcc1caa070b4 100644 (file)
@@ -948,23 +948,6 @@ void **nedpindependent_comalloc(nedpool *p, size_t elems, size_t *sizes, void **
        return ret;
 }
 
-#ifdef OVERRIDE_STRDUP
-/*
- * This implementation is purely there to override the libc version, to
- * avoid a crash due to allocation and free on different 'heaps'.
- */
-char *strdup(const char *s1)
-{
-       char *s2 = 0;
-       if (s1) {
-               size_t len = strlen(s1) + 1;
-               s2 = malloc(len);
-               memcpy(s2, s1, len);
-       }
-       return s2;
-}
-#endif
-
 #if defined(__cplusplus)
 }
 #endif