summaryrefslogtreecommitdiff
path: root/lib/fnv
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2022-07-19 14:30:01 +1000
committerGitHub <noreply@github.com>2022-07-19 05:30:01 +0100
commit1cdde7ba6a2ba3b35737380f49242e8229302a3d (patch)
treee6af4cc2029345b4b2aef1df1537c52e12da04c1 /lib/fnv
parent59c7b15b4da6e9325b7af6bd34fc4cb557ebb184 (diff)
Fix AVR compilation of FNV by using standard integer typenames. (#17716)
Diffstat (limited to 'lib/fnv')
-rw-r--r--lib/fnv/fnv.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/fnv/fnv.h b/lib/fnv/fnv.h
index 2083a4aa23..5249366731 100644
--- a/lib/fnv/fnv.h
+++ b/lib/fnv/fnv.h
@@ -76,7 +76,8 @@
#if !defined(__FNV_H__)
#define __FNV_H__
-#include <sys/types.h>
+#include <stdlib.h>
+#include <stdint.h>
#define FNV_VERSION "5.0.2" /* @(#) FNV Version */
@@ -84,7 +85,7 @@
/*
* 32 bit FNV-0 hash type
*/
-typedef u_int32_t Fnv32_t;
+typedef uint32_t Fnv32_t;
/*
@@ -122,10 +123,10 @@ typedef u_int32_t Fnv32_t;
* 64 bit FNV-0 hash
*/
#if defined(HAVE_64BIT_LONG_LONG)
-typedef u_int64_t Fnv64_t;
+typedef uint64_t Fnv64_t;
#else /* HAVE_64BIT_LONG_LONG */
typedef struct {
- u_int32_t w32[2]; /* w32[0] is low order, w32[1] is high order word */
+ uint32_t w32[2]; /* w32[0] is low order, w32[1] is high order word */
} Fnv64_t;
#endif /* HAVE_64BIT_LONG_LONG */