From b7a2831fbcd6d60e1569cdd4aa4e19945ffd5c60 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Fri, 20 Jun 2014 02:55:49 +0000 Subject: let the build system cope with the recent ohash changes --- test-ohash.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'test-ohash.c') diff --git a/test-ohash.c b/test-ohash.c index 84d1b677..522ad708 100644 --- a/test-ohash.c +++ b/test-ohash.c @@ -3,16 +3,18 @@ #include #include -void *xalloc(size_t sz, void *arg) { return(calloc(sz,1)); } -void xfree(void *p, size_t sz, void *arg) { free(p); } +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); } 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; -- cgit v1.2.3-56-ge451