]> git.cworth.org Git - fips/blobdiff - xmalloc.h
Add explicit link to libpthread, to work around debugging issues
[fips] / xmalloc.h
index b36c900e65ea63a017c53839e3642c8082c0352c..23b3de57319714c10f45d17dc2886fd9530aaad3 100644 (file)
--- a/xmalloc.h
+++ b/xmalloc.h
 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