From 519d297d182020c3d57d2c65e6d83faf5410cfe1 Mon Sep 17 00:00:00 2001 From: vapier Date: Tue, 28 Mar 2006 02:35:56 +0000 Subject: just whitespace fixes git-svn-id: svn://busybox.net/trunk/busybox@14676 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- include/platform.h | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'include/platform.h') diff --git a/include/platform.h b/include/platform.h index 699de8f02..ea2983d30 100644 --- a/include/platform.h +++ b/include/platform.h @@ -44,28 +44,28 @@ #endif #ifndef ATTRIBUTE_UNUSED -#define ATTRIBUTE_UNUSED __attribute__ ((__unused__)) +# define ATTRIBUTE_UNUSED __attribute__ ((__unused__)) #endif /* ATTRIBUTE_UNUSED */ #ifndef ATTRIBUTE_NORETURN -#define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__)) +# define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__)) #endif /* ATTRIBUTE_NORETURN */ #ifndef ATTRIBUTE_PACKED -#define ATTRIBUTE_PACKED __attribute__ ((__packed__)) +# define ATTRIBUTE_PACKED __attribute__ ((__packed__)) #endif /* ATTRIBUTE_PACKED */ #ifndef ATTRIBUTE_ALIGNED -#define ATTRIBUTE_ALIGNED(m) __attribute__ ((__aligned__(m))) +# define ATTRIBUTE_ALIGNED(m) __attribute__ ((__aligned__(m))) #endif /* ATTRIBUTE_ALIGNED */ /* -fwhole-program makes all symbols local. The attribute externally_visible forces a symbol global. */ #ifndef ATTRIBUTE_EXTERNALLY_VISIBLE # if __GNUC_PREREQ (4,1) -# define ATTRIBUTE_EXTERNALLY_VISIBLE __attribute__ ((__externally_visible__)) +# define ATTRIBUTE_EXTERNALLY_VISIBLE __attribute__ ((__externally_visible__)) # else -# define ATTRIBUTE_EXTERNALLY_VISIBLE +# define ATTRIBUTE_EXTERNALLY_VISIBLE # endif /* GNUC >= 4.1 */ #endif /* ATTRIBUTE_EXTERNALLY_VISIBLE */ @@ -80,26 +80,26 @@ /* ---- Endian Detection ------------------------------------ */ #ifndef __APPLE__ - #include - #include +# include +# include #endif #ifdef __BIG_ENDIAN__ - #define BB_BIG_ENDIAN 1 - #define BB_LITTLE_ENDIAN 0 +# define BB_BIG_ENDIAN 1 +# define BB_LITTLE_ENDIAN 0 #elif __BYTE_ORDER == __BIG_ENDIAN - #define BB_BIG_ENDIAN 1 - #define BB_LITTLE_ENDIAN 0 +# define BB_BIG_ENDIAN 1 +# define BB_LITTLE_ENDIAN 0 #else - #define BB_BIG_ENDIAN 0 - #define BB_LITTLE_ENDIAN 1 +# define BB_BIG_ENDIAN 0 +# define BB_LITTLE_ENDIAN 1 #endif /* ---- Networking ------------------------------------------ */ #ifndef __APPLE__ -#include +# include #else -#include +# include #endif /* ---- miscellaneous --------------------------------------- */ -- cgit v1.2.3-55-g6feb