X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fdmalloc.h;h=a68b59ba02f631247d15fbbed8d0e8bfee384b0b;hb=a4b3ddd8ad754b42454c7a18fdb3ef61f7bd580d;hp=bf8e5d7a37eb6676ececc8c5850faa9e60c77b94;hpb=657fb99115b87a5244e9a33bbe4ca3d9d18849c4;p=yaz-moved-to-github.git diff --git a/include/dmalloc.h b/include/dmalloc.h index bf8e5d7..a68b59b 100644 --- a/include/dmalloc.h +++ b/include/dmalloc.h @@ -24,7 +24,13 @@ * OF THIS SOFTWARE. * * $Log: dmalloc.h,v $ - * Revision 1.3 1995-09-27 15:02:47 quinn + * Revision 1.5 1995-10-16 13:51:43 quinn + * Changes to provide Especs to the backend. + * + * Revision 1.4 1995/09/29 17:12:02 quinn + * Smallish + * + * Revision 1.3 1995/09/27 15:02:47 quinn * Modified function heads & prototypes. * * Revision 1.2 1995/05/16 08:50:30 quinn @@ -45,8 +51,6 @@ #ifdef DEBUG_MALLOC -#include - #ifdef malloc #undef malloc #endif @@ -60,9 +64,9 @@ #define free(p) d_free(__FILE__, __LINE__, (p)) #define realloc(p, n) d_realloc(__FILE__, __LINE__, (p), (n)) -void MDF *d_malloc(char *file, int line, int nbytes); -void MDF d_free(char *file, int line, char *ptr); -void MDF *d_realloc(char *file, int line, char *ptr, int nbytes); +void *d_malloc(char *file, int line, int nbytes); +void d_free(char *file, int line, char *ptr); +void *d_realloc(char *file, int line, char *ptr, int nbytes); #endif