diff options
| author | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2025-11-01 14:27:18 -0400 |
|---|---|---|
| committer | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2025-11-01 14:27:18 -0400 |
| commit | f16156b328c87630e0c7da036353b9992b9dbf0d (patch) | |
| tree | ebc8e654017305d889247d8499a40fd59a78b781 /include | |
| parent | 745e9c48926c7e9361396c4da32760518d6912b3 (diff) | |
| download | libmap-f16156b328c87630e0c7da036353b9992b9dbf0d.tar.gz | |
Updated hash header for libmap
Diffstat (limited to 'include')
| -rwxr-xr-x | include/hashfuncs.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/hashfuncs.h b/include/hashfuncs.h index da5d788..a906130 100755 --- a/include/hashfuncs.h +++ b/include/hashfuncs.h @@ -1,4 +1,7 @@ +#ifndef H_LIBMAP_HASH +#define H_LIBMAP_HASH #include <stdlib.h> +#include <stdint.h> /* * @@ -31,3 +34,4 @@ static size_t test_hash(const char *key, const size_t max_hash_value) { return key[0] % 3; } +#endif |