mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
6daac11581
git-svn-id: file:///svn/toku/tokudb@10747 c7de825b-a66e-492c-adef-691d508d4ae1
17 lines
466 B
C
17 lines
466 B
C
/* -*- mode: C; c-basic-offset: 4 -*- */
|
|
#ident "Copyright (c) 2007 Tokutek Inc. All rights reserved."
|
|
#ifndef ENDIAN_H
|
|
#define ENDIAN_H
|
|
|
|
#if defined(__BYTE_ORDER) || defined(__LITTLE_ENDIAN) || defined(__BIG_ENDIAN)
|
|
#error Standards are defined for some reason
|
|
#endif
|
|
|
|
//Windows does not exist for big endian machines, only little endian
|
|
#define __LITTLE_ENDIAN (0x01020304)
|
|
#define __BIG_ENDIAN (0x04030201)
|
|
#define __BYTE_ORDER (__LITTLE_ENDIAN)
|
|
|
|
|
|
#endif
|
|
|