diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-04-06 16:06:23 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-04-06 16:06:23 +0100 |
commit | 9d8c61c149266840166a9e58a2b5dbb3a8882bcb (patch) | |
tree | bff6f8756e81b51ac435faea470de371e0012141 /contrib | |
parent | 29cbfb6337cb94f096de63009f48f746085c0341 (diff) | |
download | rspamd-9d8c61c149266840166a9e58a2b5dbb3a8882bcb.tar.gz rspamd-9d8c61c149266840166a9e58a2b5dbb3a8882bcb.zip |
Use rspamd specific include.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/siphash/siphash_internal.h | 2 |
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) \ |