X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=xmalloc.h;h=23b3de57319714c10f45d17dc2886fd9530aaad3;hb=01b9630089d68e7e0e570cf9793c00a8519df973;hp=b36c900e65ea63a017c53839e3642c8082c0352c;hpb=da0ee5e7efab316635f59d212028844f848fa6ce;p=fips diff --git a/xmalloc.h b/xmalloc.h index b36c900..23b3de5 100644 --- a/xmalloc.h +++ b/xmalloc.h @@ -25,4 +25,13 @@ void * xmalloc (size_t size); +void * +xcalloc (size_t nmemb, size_t size); + +void * +xrealloc (void *ptr, size_t size); + +char * +xstrdup (const char *s); + #endif