diff options
| author | Louis Burda <quent.burda@gmail.com> | 2023-04-09 10:18:14 -0400 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2023-04-09 10:18:14 -0400 |
| commit | 7adcb7e86fcccbb42e287f5bdf83d66cdeaf7166 (patch) | |
| tree | 0e09ba3451cb5efb2fe720d199bbd7a1702f79b8 /include | |
| parent | 50d37a404599820009def6cfc703e1b3d4384be3 (diff) | |
| download | libhmap-c-7adcb7e86fcccbb42e287f5bdf83d66cdeaf7166.tar.gz libhmap-c-7adcb7e86fcccbb42e287f5bdf83d66cdeaf7166.zip | |
Use sys/types.h for ssize_t
Diffstat (limited to 'include')
| -rw-r--r-- | include/hmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hmap.h b/include/hmap.h index 37a2bf2..b0ec7b0 100644 --- a/include/hmap.h +++ b/include/hmap.h @@ -4,7 +4,7 @@ #include <stdint.h> #include <stdbool.h> -#include <stdlib.h> +#include <sys/types.h> #define HMAP_ITER(map, iter) \ hmap_iter_init(iter); hmap_iter_next(map, iter); |
