]> git.cameronkatri.com Git - mandoc.git/blobdiff - test-ohash.c
Indentation must be measured in units of the surrounding text,
[mandoc.git] / test-ohash.c
index 84d1b6772102aa0be0e7aef3b8cae878d7ed333a..1844fe56ad8a4944c9618fb14b88bf055ec795b6 100644 (file)
@@ -3,16 +3,36 @@
 #include <stdlib.h>
 #include <ohash.h>
 
-void *xalloc(size_t sz, void *arg) { return(calloc(sz,1)); }
-void xfree(void *p, size_t sz, 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)
 {
        struct ohash h;
        struct ohash_info i;
-       i.halloc = i.alloc = xalloc;
-       i.hfree = xfree;
+       i.alloc = xmalloc;
+       i.calloc = xcalloc;
+       i.free = xfree;
        ohash_init(&h, 2, &i);
        ohash_delete(&h);
        return 0;