aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--contrib/siphash/siphash_internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/siphash/siphash_internal.h b/contrib/siphash/siphash_internal.h
index 04b069253..c5176c588 100644
--- a/contrib/siphash/siphash_internal.h
+++ b/contrib/siphash/siphash_internal.h
@@ -1,7 +1,7 @@
#ifndef SIPHASH_INTERNAL_H
#define SIPHASH_INTERNAL_H
-#include <endian.h>
+#include "config.h"
#define SIP_ROTL(x, b) (uint64_t)(((x) << (b)) | ( (x) >> (64 - (b))))
#define SIP_U32TO8_LE(p, v) \