Change the Mymalloc to match Perl_malloc in perl.h.
Perl 5 Porters [Tue, 20 Aug 1996 09:30:46 +0000 (09:30 +0000)]
ext/SDBM_File/sdbm/sdbm.h

index 4d6c844..b862147 100644 (file)
@@ -110,13 +110,15 @@ extern long sdbm_hash proto((char *, int));
 
 #ifdef MYMALLOC
 #   ifdef HIDEMYMALLOC
-#      define malloc Mymalloc
-#      define realloc Myremalloc
-#      define free Myfree
+#      define malloc Perl_malloc
+#      define realloc Perl_realloc
+#      define free Perl_free
+#      define calloc Perl_calloc
 #   endif
 #   define safemalloc malloc
 #   define saferealloc realloc
 #   define safefree free
+#   define safecalloc calloc
 #endif
 
 #if defined(__STDC__) || defined(_AIX) || defined(__stdc__) || defined(__cplusplus)