#ifdef ABOOK_SRC
(char *) abook_malloc (size);
#else
- (char *) malloc (size);
+ (char *) xmalloc (size);
#endif
assert(format != NULL);
#ifdef ABOOK_SRC
(char *) abook_realloc (buffer, size);
#else
- (char *) realloc (buffer, size);
+ (char *) xrealloc (buffer, size);
#endif
}
}
#ifdef ABOOK_SRC
abook_malloc(l);
#else
- malloc(l);
+ xmalloc(l);
#endif
if(concat == NULL)
return NULL;
#define INITIAL_SIZE 128
#ifndef ABOOK_SRC
-# define abook_malloc(X) malloc(X)
-# define abook_realloc(X, XX) realloc(X, XX)
+# define abook_malloc(X) xmalloc(X)
+# define abook_realloc(X, XX) xrealloc(X, XX)
#endif
char *