X-Git-Url: https://git.cameronkatri.com/mandoc.git/blobdiff_plain/4b68a3c80b4d2c00a2dd66f531e52f4677a118c6..e87764af026befe56bf121a50708564d413fa82c:/compat_ohash.h?ds=inline diff --git a/compat_ohash.h b/compat_ohash.h index d07df18e..e3124c96 100644 --- a/compat_ohash.h +++ b/compat_ohash.h @@ -27,8 +27,8 @@ struct ohash_info { ptrdiff_t key_offset; void *data; /* user data */ - void *(*halloc)(size_t, void *); - void (*hfree)(void *, size_t, void *); + void *(*calloc)(size_t, size_t, void *); + void (*free)(void *, void *); void *(*alloc)(size_t, void *); }; @@ -56,8 +56,7 @@ void ohash_delete(struct ohash *); unsigned int ohash_lookup_interval(struct ohash *, const char *, const char *, uint32_t); unsigned int ohash_lookup_memory(struct ohash *, const char *, - size_t, uint32_t) - __attribute__ ((__bounded__(__string__,2,3))); + size_t, uint32_t); void *ohash_find(struct ohash *, unsigned int); void *ohash_remove(struct ohash *, unsigned int); void *ohash_insert(struct ohash *, unsigned int, void *);