diff options
author | Bernhard Reutner-Fischer | 2006-05-19 10:43:32 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2006-05-19 10:43:32 +0000 |
commit | 0e37af831d707494a86111755a3530b707d1035c (patch) | |
tree | 472954b39a7e9ec2c319971f028b2111f7b6f86e /include/platform.h | |
parent | 006955556f9677ecf73aac582497f6efc47d383f (diff) | |
download | busybox-0e37af831d707494a86111755a3530b707d1035c.zip busybox-0e37af831d707494a86111755a3530b707d1035c.tar.gz |
- make sure not to trip enless loops when using strlen in IMA mode.
(r15000 from trunk plus preprocessor fixes plus
repair of commit message)
Diffstat (limited to 'include/platform.h')
-rw-r--r-- | include/platform.h | 33 |
1 files changed, 12 insertions, 21 deletions
diff --git a/include/platform.h b/include/platform.h index ea2983d..e2f97c0 100644 --- a/include/platform.h +++ b/include/platform.h @@ -32,40 +32,29 @@ # endif #endif -#if 0 -/* Attribute __malloc__ on functions was valid as of gcc 2.96. */ -#ifndef ATTRIBUTE_MALLOC -# if __GNUC_PREREQ (2,96) -# define ATTRIBUTE_MALLOC __attribute__ ((__malloc__)) -# else -# define ATTRIBUTE_MALLOC -# endif /* GNUC >= 2.96 */ -#endif /* ATTRIBUTE_MALLOC */ -#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__)) -#endif /* ATTRIBUTE_PACKED */ +#define ATTRIBUTE_PACKED __attribute__ ((__packed__)) +#endif /* ATTRIBUTE_NORETURN */ #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 */ @@ -78,6 +67,11 @@ # endif #endif +#ifdef __GNUC__ +#define strlen(x) bb_strlen(x) +extern size_t bb_strlen(const char *string); +#endif + /* ---- Endian Detection ------------------------------------ */ #ifndef __APPLE__ # include <byteswap.h> @@ -86,13 +80,10 @@ #ifdef __BIG_ENDIAN__ # 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 #else # define BB_BIG_ENDIAN 0 -# define BB_LITTLE_ENDIAN 1 #endif /* ---- Networking ------------------------------------------ */ |