diff options
author | Lukas Slebodnik <lslebodn@redhat.com> | 2013-08-28 08:31:17 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-08-28 22:02:49 +0200 |
commit | 1658c567191c35beaddffafdb079abe33248037b (patch) | |
tree | 0f0090ea32f08db684f655fe6526557d31a7b98e /src/util/murmurhash3.c | |
parent | 46c5deedec570bb5f99702a933ba99d76f9f09cb (diff) | |
download | sssd-1658c567191c35beaddffafdb079abe33248037b.tar.gz sssd-1658c567191c35beaddffafdb079abe33248037b.tar.xz sssd-1658c567191c35beaddffafdb079abe33248037b.zip |
UTIL: Create new wraper header file sss_endian.h
Some platform have header file endian.h and anothers have sys/endian.h.
We nedd to use conditional build to handle it correctly, therefore new header
file sss_endian.h was created.
Diffstat (limited to 'src/util/murmurhash3.c')
-rw-r--r-- | src/util/murmurhash3.c | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/src/util/murmurhash3.c b/src/util/murmurhash3.c index 80e52ed56..cab138e17 100644 --- a/src/util/murmurhash3.c +++ b/src/util/murmurhash3.c @@ -8,19 +8,10 @@ #include <stdlib.h> #include <stdint.h> -#include <endian.h> #include <string.h> -#include <byteswap.h> - -/* support RHEL5 lack of definitions */ -#ifndef le32toh -# if __BYTE_ORDER == __LITTLE_ENDIAN -# define le32toh(x) (x) -# else -# define le32toh(x) bswap_32 (x) -# endif -#endif +#include "config.h" +#include "util/sss_endian.h" static uint32_t rotl(uint32_t x, int8_t r) { |