XCALLOC is not used anywhere anymore, so it can be removed

This commit is contained in:
nijtmans 2019-03-28 17:00:50 +01:00 committed by Steffen Jaeckel
parent d449bd44c0
commit 54d673f1a8

View File

@ -41,12 +41,10 @@ extern "C" {
# define XMALLOC malloc
# define XFREE free
# define XREALLOC realloc
# define XCALLOC calloc
#else
/* prototypes for our heap functions */
extern void *XMALLOC(size_t n);
extern void *XREALLOC(void *p, size_t n);
extern void *XCALLOC(size_t n, size_t s);
extern void XFREE(void *p);
#endif