mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
3a208cebc4
git-svn-id: file:///svn/toku/tokudb@43762 c7de825b-a66e-492c-adef-691d508d4ae1
18 lines
532 B
C
18 lines
532 B
C
/* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */
|
|
// vim: expandtab:ts=8:sw=4:softtabstop=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
|
|
|