perl 5.003_07: ext/SDBM_File/sdbm/sdbm.h perl.h
authorPerl 5 Porters <perl5-porters@africa.nicoh.com>
Tue, 8 Oct 1996 22:12:21 +0000 (22:12 +0000)
committerAndy Dougherty <doughera@lafcol.lafayette.edu>
Tue, 8 Oct 1996 22:12:21 +0000 (22:12 +0000)
Change Myrealloc to Myremalloc to conform to 5.003's version.
I left in the Mycalloc since malloc.c now includes a calloc,
and we might need to hide it.

ext/SDBM_File/sdbm/sdbm.h
perl.h

index e297903..8fcdda0 100644 (file)
@@ -111,7 +111,7 @@ extern long sdbm_hash proto((char *, int));
 #ifdef MYMALLOC
 #   ifdef HIDEMYMALLOC
 #      define malloc Mymalloc
-#      define realloc Myrealloc
+#      define realloc Myremalloc
 #      define free Myfree
 #      define calloc Mycalloc
 #   endif
diff --git a/perl.h b/perl.h
index 7b2842e..675b6a6 100644 (file)
--- a/perl.h
+++ b/perl.h
@@ -207,7 +207,7 @@ EXT int lc_collate_active;
 #ifdef MYMALLOC
 #   ifdef HIDEMYMALLOC
 #      define malloc Mymalloc
-#      define realloc Myrealloc
+#      define realloc Myremalloc
 #      define free Myfree
 #      define calloc Mycalloc
 #   endif