![]() |
Home page |
Mailing list |
Docs
Asterisk developer's documentation :: Codename Pineapple
endian.h
Go to the documentation of this file.
00001 /* 00002 * Asterisk -- An open source telephony toolkit. 00003 * 00004 * Copyright (C) 1999 - 2005, Digium, Inc. 00005 * 00006 * Mark Spencer <markster@digium.com> 00007 * 00008 * See http://www.asterisk.org for more information about 00009 * the Asterisk project. Please do not directly contact 00010 * any of the maintainers of this project for assistance; 00011 * the project provides a web site, mailing lists and IRC 00012 * channels for your use. 00013 * 00014 * This program is free software, distributed under the terms of 00015 * the GNU General Public License Version 2. See the LICENSE file 00016 * at the top of the source tree. 00017 */ 00018 00019 /*! \file 00020 * \brief Asterisk architecture endianess compatibility definitions 00021 */ 00022 00023 #ifndef _ASTERISK_ENDIAN_H 00024 #define _ASTERISK_ENDIAN_H 00025 00026 /* 00027 * Autodetect system endianess 00028 */ 00029 00030 #include "asterisk/compat.h" 00031 00032 #ifndef __BYTE_ORDER 00033 #ifdef __linux__ 00034 #include <endian.h> 00035 #elif defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__APPLE__) 00036 #include <machine/endian.h> 00037 #define __BYTE_ORDER BYTE_ORDER 00038 #define __LITTLE_ENDIAN LITTLE_ENDIAN 00039 #define __BIG_ENDIAN BIG_ENDIAN 00040 #else 00041 #ifdef __LITTLE_ENDIAN__ 00042 #define __BYTE_ORDER __LITTLE_ENDIAN 00043 #endif /* __LITTLE_ENDIAN */ 00044 00045 #if defined(i386) || defined(__i386__) 00046 #define __BYTE_ORDER __LITTLE_ENDIAN 00047 #endif /* defined i386 */ 00048 00049 #if defined(sun) && defined(unix) && defined(sparc) 00050 #define __BYTE_ORDER __BIG_ENDIAN 00051 #endif /* sun unix sparc */ 00052 00053 #endif /* linux */ 00054 00055 #endif /* __BYTE_ORDER */ 00056 00057 #ifndef __BYTE_ORDER 00058 #error Need to know endianess 00059 #endif /* __BYTE_ORDER */ 00060 00061 #endif /* _ASTERISK_ENDIAN_H */ 00062