]> git.cworth.org Git - acre/blobdiff - xmalloc.h
Add another dataset style: ACRE_STYLE_BARS
[acre] / xmalloc.h
index 650616ae4cc55fe31b80cf9df6c597e3719f3483..d926a916de0fa0a1cbb6df5811bce15cef414305 100644 (file)
--- a/xmalloc.h
+++ b/xmalloc.h
@@ -75,4 +75,7 @@ xrealloc (void *ptr, size_t size);
   ((size) && (unsigned) (nmemb) >= INT32_MAX / (unsigned) (size) ? NULL : \
    xrealloc(ptr, (unsigned) (nmemb) * (unsigned) (size)))
 
+char *
+xstrdup (const char *s);
+
 #endif /* XMALLOC_H */