diff options
Diffstat (limited to 'xmalloc.h')
-rw-r--r-- | xmalloc.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -23,6 +23,7 @@ void *xmalloc(size_t); void *xcalloc(size_t, size_t); void *xrealloc(void *, size_t); void *xreallocarray(void *, size_t, size_t); +void *xrecallocarray(void *, size_t, size_t, size_t); char *xstrdup(const char *); char *xstrndup(const char *, size_t); int xasprintf(char **, const char *, ...) |