]> git.cameronkatri.com Git - mandoc.git/blobdiff - test-ohash.c
merge OpenBSD commit by jmc@:
[mandoc.git] / test-ohash.c
index 138d520d1c4b25a730803524ac66fe7d030cee03..1844fe56ad8a4944c9618fb14b88bf055ec795b6 100644 (file)
@@ -3,9 +3,27 @@
 #include <stdlib.h>
 #include <ohash.h>
 
-void *xmalloc(size_t sz, void *arg) { return calloc(1,sz); }
-void *xcalloc(size_t nmemb, size_t sz, void *arg) { return calloc(nmemb,sz); }
-void xfree(void *p, void *arg) { free(p); }
+static void    *xmalloc(size_t, void *);
+static void    *xcalloc(size_t, size_t, void *);
+static void     xfree(void *, void *);
+
+
+static void *
+xmalloc(size_t sz, void *arg) {
+       return calloc(1,sz);
+}
+
+static void *
+xcalloc(size_t nmemb, size_t sz, void *arg)
+{
+       return calloc(nmemb,sz);
+}
+
+static void
+xfree(void *p, void *arg)
+{
+       free(p);
+}
 
 int
 main(void)