Skip to content

Commit

Permalink
Fix AVR compilation of FNV by using standard integer typenames. (qmk#…
Browse files Browse the repository at this point in the history
  • Loading branch information
tzarc authored and nolanseaton committed Jan 23, 2023
1 parent 7c632db commit 8d10d7a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions lib/fnv/fnv.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,16 @@
#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 */


/*
* 32 bit FNV-0 hash type
*/
typedef u_int32_t Fnv32_t;
typedef uint32_t Fnv32_t;


/*
Expand Down Expand Up @@ -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 */

Expand Down

0 comments on commit 8d10d7a

Please sign in to comment.