2013-04-17 00:00:59 -04:00
|
|
|
/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
|
|
|
|
// vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4:
|
2013-04-17 00:00:25 -04:00
|
|
|
#ident "Copyright (c) 2012 Tokutek Inc. All rights reserved."
|
|
|
|
#ident "$Id$"
|
|
|
|
|
|
|
|
#ifndef TOKU_BYTESWAP_H
|
|
|
|
#define TOKU_BYTESWAP_H
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#if defined(HAVE_BYTESWAP_H)
|
|
|
|
# include <byteswap.h>
|
2013-04-17 00:01:11 -04:00
|
|
|
#elif defined(HAVE_SYS_ENDIAN_H)
|
|
|
|
# include <sys/endian.h>
|
|
|
|
# define bswap_64 bswap64
|
2013-04-17 00:00:25 -04:00
|
|
|
#elif defined(HAVE_LIBKERN_OSBYTEORDER_H)
|
|
|
|
# include <libkern/OSByteOrder.h>
|
|
|
|
# define bswap_64 OSSwapInt64
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* TOKU_BYTESWAP_H */
|