From adf9ec81ff7e5b8257c7d635657fcb2ffadc7e6a Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Fri, 3 Oct 2014 15:49:36 +0200 Subject: Drop src/common.h and use byte order macros from config.h directly --- src/common.h | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 src/common.h (limited to 'src/common.h') diff --git a/src/common.h b/src/common.h deleted file mode 100644 index 657e049..0000000 --- a/src/common.h +++ /dev/null @@ -1,20 +0,0 @@ -#ifndef COMMON_H -#define COMMON_H - -#ifdef HAVE_CONFIG_H -#include -#endif - -#define PLIST_LITTLE_ENDIAN 0 -#define PLIST_BIG_ENDIAN 1 - -#ifndef PLIST_BYTE_ORDER -#if __BIG_ENDIAN__ == 1 -#define PLIST_BYTE_ORDER PLIST_BIG_ENDIAN -#endif -#if __LITTLE_ENDIAN__ == 1 -#define PLIST_BYTE_ORDER PLIST_LITTLE_ENDIAN -#endif -#endif - -#endif -- cgit v1.1-32-gdbae