diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/gehashmap.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/examples/gehashmap.c b/examples/gehashmap.c index 7d6d1a4..17f8eb4 100644 --- a/examples/gehashmap.c +++ b/examples/gehashmap.c @@ -4,10 +4,8 @@ #include <gehashmap.h> -GEHASHMAP_API(char *, int, atoimap) -GEHASHMAP_API(int, unsigned int, itoumap) -GEHASHMAP_IMPL(char *, int, atoimap) -GEHASHMAP_IMPL(int, unsigned int, itoumap) +GEHASHMAP_DEF(char *, int, atoimap) +GEHASHMAP_DEF(int, unsigned int, itoumap) bool atoimap_key_iseq(char *a, char *b) |