On Mon, Nov 7, 2022 at 4:47 PM Andrii Nakryiko <andrii.nakryiko@xxxxxxxxx> wrote: > + > +#define hashmap__find(map, key, value) ({ > \ > + _Static_assert(value == NULL || sizeof(*value) == > sizeof(long), \ > + "Value pointee should be a long-sized > integer or a pointer"); \ > + hashmap_find(map, (long)key, (long *)value); > \ > +}) Well, that's a different story :)