Bernhard Reutner-Fischer | b1629b1 | 2006-05-19 19:29:19 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 2 | /* |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 3 | * Copyright 2006, Bernhard Reutner-Fischer |
Denys Vlasenko | 867ffb9 | 2010-08-16 03:24:40 +0200 | [diff] [blame] | 4 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 5 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Denys Vlasenko | 867ffb9 | 2010-08-16 03:24:40 +0200 | [diff] [blame] | 6 | */ |
Denys Vlasenko | e4dcba1 | 2010-10-28 18:57:19 +0200 | [diff] [blame] | 7 | #ifndef BB_PLATFORM_H |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 8 | #define BB_PLATFORM_H 1 |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 9 | |
Dan Fandrich | 21a542d | 2009-10-27 11:05:00 +0100 | [diff] [blame] | 10 | |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 11 | /* Convenience macros to test the version of gcc. */ |
| 12 | #undef __GNUC_PREREQ |
| 13 | #if defined __GNUC__ && defined __GNUC_MINOR__ |
| 14 | # define __GNUC_PREREQ(maj, min) \ |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 15 | ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min)) |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 16 | #else |
| 17 | # define __GNUC_PREREQ(maj, min) 0 |
| 18 | #endif |
| 19 | |
| 20 | /* __restrict is known in EGCS 1.2 and above. */ |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 21 | #if !__GNUC_PREREQ(2,92) |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 22 | # ifndef __restrict |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 23 | # define __restrict |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 24 | # endif |
| 25 | #endif |
| 26 | |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 27 | #if !__GNUC_PREREQ(2,7) |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 28 | # ifndef __attribute__ |
| 29 | # define __attribute__(x) |
| 30 | # endif |
| 31 | #endif |
| 32 | |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 33 | #undef inline |
Denis Vlasenko | a7189f0 | 2006-11-17 20:29:00 +0000 | [diff] [blame] | 34 | #if defined(__STDC_VERSION__) && __STDC_VERSION__ > 199901L |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 35 | /* it's a keyword */ |
Denys Vlasenko | 9b1b62a | 2009-07-05 03:34:12 +0200 | [diff] [blame] | 36 | #elif __GNUC_PREREQ(2,7) |
| 37 | # define inline __inline__ |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 38 | #else |
Denys Vlasenko | 9b1b62a | 2009-07-05 03:34:12 +0200 | [diff] [blame] | 39 | # define inline |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 40 | #endif |
| 41 | |
| 42 | #ifndef __const |
| 43 | # define __const const |
| 44 | #endif |
| 45 | |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 46 | #define UNUSED_PARAM __attribute__ ((__unused__)) |
| 47 | #define NORETURN __attribute__ ((__noreturn__)) |
Denys Vlasenko | 53283ad | 2009-11-02 14:20:34 +0100 | [diff] [blame] | 48 | /* "The malloc attribute is used to tell the compiler that a function |
| 49 | * may be treated as if any non-NULL pointer it returns cannot alias |
| 50 | * any other pointer valid when the function returns. This will often |
| 51 | * improve optimization. Standard functions with this property include |
| 52 | * malloc and calloc. realloc-like functions have this property as long |
| 53 | * as the old pointer is never referred to (including comparing it |
| 54 | * to the new pointer) after the function returns a non-NULL value." |
| 55 | */ |
| 56 | #define RETURNS_MALLOC __attribute__ ((malloc)) |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 57 | #define PACKED __attribute__ ((__packed__)) |
| 58 | #define ALIGNED(m) __attribute__ ((__aligned__(m))) |
Denys Vlasenko | 9b1b62a | 2009-07-05 03:34:12 +0200 | [diff] [blame] | 59 | |
Denis Vlasenko | 0f3a580 | 2008-03-20 13:13:09 +0000 | [diff] [blame] | 60 | /* __NO_INLINE__: some gcc's do not honor inlining! :( */ |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 61 | #if __GNUC_PREREQ(3,0) && !defined(__NO_INLINE__) |
| 62 | # define ALWAYS_INLINE __attribute__ ((always_inline)) inline |
Denis Vlasenko | 77f1ec1 | 2007-10-13 03:36:03 +0000 | [diff] [blame] | 63 | /* I've seen a toolchain where I needed __noinline__ instead of noinline */ |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 64 | # define NOINLINE __attribute__((__noinline__)) |
| 65 | # if !ENABLE_WERROR |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 66 | # define DEPRECATED __attribute__ ((__deprecated__)) |
| 67 | # define UNUSED_PARAM_RESULT __attribute__ ((warn_unused_result)) |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 68 | # else |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 69 | # define DEPRECATED |
| 70 | # define UNUSED_PARAM_RESULT |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 71 | # endif |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 72 | #else |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 73 | # define ALWAYS_INLINE inline |
| 74 | # define NOINLINE |
| 75 | # define DEPRECATED |
| 76 | # define UNUSED_PARAM_RESULT |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 77 | #endif |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 78 | |
Bartosz Golaszewski | bf0f2c7 | 2014-06-26 14:31:05 +0200 | [diff] [blame] | 79 | /* used by unit test machinery to run registration functions before calling main() */ |
| 80 | #define INIT_FUNC __attribute__ ((constructor)) |
Bartosz Golaszewski | 3ed81cf | 2014-06-22 16:30:41 +0200 | [diff] [blame] | 81 | |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 82 | /* -fwhole-program makes all symbols local. The attribute externally_visible |
Denys Vlasenko | 89f5bfd | 2011-05-12 23:03:18 +0200 | [diff] [blame] | 83 | * forces a symbol global. */ |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 84 | #if __GNUC_PREREQ(4,1) |
| 85 | # define EXTERNALLY_VISIBLE __attribute__(( visibility("default") )) |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 86 | //__attribute__ ((__externally_visible__)) |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 87 | #else |
| 88 | # define EXTERNALLY_VISIBLE |
Denis Vlasenko | 6ebb2f5 | 2008-12-03 10:46:12 +0000 | [diff] [blame] | 89 | #endif |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 90 | |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 91 | /* At 4.4 gcc become much more anal about this, need to use "aliased" types */ |
| 92 | #if __GNUC_PREREQ(4,4) |
| 93 | # define FIX_ALIASING __attribute__((__may_alias__)) |
| 94 | #else |
| 95 | # define FIX_ALIASING |
| 96 | #endif |
| 97 | |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 98 | /* We use __extension__ in some places to suppress -pedantic warnings |
Denys Vlasenko | 89f5bfd | 2011-05-12 23:03:18 +0200 | [diff] [blame] | 99 | * about GCC extensions. This feature didn't work properly before |
| 100 | * gcc 2.8. */ |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 101 | #if !__GNUC_PREREQ(2,8) |
Bernhard Reutner-Fischer | 86f5c99 | 2006-01-22 22:55:11 +0000 | [diff] [blame] | 102 | # ifndef __extension__ |
| 103 | # define __extension__ |
| 104 | # endif |
| 105 | #endif |
| 106 | |
Denis Vlasenko | 42b8daf | 2008-06-27 03:55:18 +0000 | [diff] [blame] | 107 | /* FAST_FUNC is a qualifier which (possibly) makes function call faster |
| 108 | * and/or smaller by using modified ABI. It is usually only needed |
| 109 | * on non-static, busybox internal functions. Recent versions of gcc |
| 110 | * optimize statics automatically. FAST_FUNC on static is required |
| 111 | * only if you need to match a function pointer's type */ |
Denis Vlasenko | ac2b50e | 2008-06-27 04:30:48 +0000 | [diff] [blame] | 112 | #if __GNUC_PREREQ(3,0) && defined(i386) /* || defined(__x86_64__)? */ |
| 113 | /* stdcall makes callee to pop arguments from stack, not caller */ |
| 114 | # define FAST_FUNC __attribute__((regparm(3),stdcall)) |
Denis Vlasenko | 42b8daf | 2008-06-27 03:55:18 +0000 | [diff] [blame] | 115 | /* #elif ... - add your favorite arch today! */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 116 | #else |
| 117 | # define FAST_FUNC |
| 118 | #endif |
| 119 | |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 120 | /* Make all declarations hidden (-fvisibility flag only affects definitions) */ |
| 121 | /* (don't include system headers after this until corresponding pop!) */ |
Denys Vlasenko | 4dc35fb | 2011-07-08 04:41:38 +0200 | [diff] [blame] | 122 | #if __GNUC_PREREQ(4,1) && !defined(__CYGWIN__) |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 123 | # define PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN _Pragma("GCC visibility push(hidden)") |
| 124 | # define POP_SAVED_FUNCTION_VISIBILITY _Pragma("GCC visibility pop") |
| 125 | #else |
| 126 | # define PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN |
| 127 | # define POP_SAVED_FUNCTION_VISIBILITY |
| 128 | #endif |
| 129 | |
Denys Vlasenko | 89f5bfd | 2011-05-12 23:03:18 +0200 | [diff] [blame] | 130 | /* gcc-2.95 had no va_copy but only __va_copy. */ |
| 131 | #if !__GNUC_PREREQ(3,0) |
| 132 | # include <stdarg.h> |
| 133 | # if !defined va_copy && defined __va_copy |
| 134 | # define va_copy(d,s) __va_copy((d),(s)) |
| 135 | # endif |
| 136 | #endif |
| 137 | |
| 138 | |
Rob Landley | 5cf7c2d | 2006-02-21 06:44:43 +0000 | [diff] [blame] | 139 | /* ---- Endian Detection ------------------------------------ */ |
Rob Landley | 5cf7c2d | 2006-02-21 06:44:43 +0000 | [diff] [blame] | 140 | |
Denys Vlasenko | 9ff50b8 | 2010-10-18 11:40:26 +0200 | [diff] [blame] | 141 | #include <limits.h> |
Denys Vlasenko | 9b1b62a | 2009-07-05 03:34:12 +0200 | [diff] [blame] | 142 | #if defined(__digital__) && defined(__unix__) |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 143 | # include <sex.h> |
Denys Vlasenko | 867ffb9 | 2010-08-16 03:24:40 +0200 | [diff] [blame] | 144 | #elif defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) \ |
| 145 | || defined(__APPLE__) |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 146 | # include <sys/resource.h> /* rlimit */ |
Denys Vlasenko | 9b1b62a | 2009-07-05 03:34:12 +0200 | [diff] [blame] | 147 | # include <machine/endian.h> |
| 148 | # define bswap_64 __bswap64 |
| 149 | # define bswap_32 __bswap32 |
| 150 | # define bswap_16 __bswap16 |
Denys Vlasenko | 867ffb9 | 2010-08-16 03:24:40 +0200 | [diff] [blame] | 151 | #else |
Rob Landley | 15d20a0 | 2006-05-29 05:00:44 +0000 | [diff] [blame] | 152 | # include <byteswap.h> |
| 153 | # include <endian.h> |
Bernhard Reutner-Fischer | e00fc16 | 2006-05-26 13:10:10 +0000 | [diff] [blame] | 154 | #endif |
| 155 | |
Denys Vlasenko | 867ffb9 | 2010-08-16 03:24:40 +0200 | [diff] [blame] | 156 | #if defined(__BYTE_ORDER) && __BYTE_ORDER == __BIG_ENDIAN |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 157 | # define BB_BIG_ENDIAN 1 |
| 158 | # define BB_LITTLE_ENDIAN 0 |
Denys Vlasenko | 867ffb9 | 2010-08-16 03:24:40 +0200 | [diff] [blame] | 159 | #elif defined(__BYTE_ORDER) && __BYTE_ORDER == __LITTLE_ENDIAN |
| 160 | # define BB_BIG_ENDIAN 0 |
| 161 | # define BB_LITTLE_ENDIAN 1 |
Waldemar Brodkorb | 95b83ba | 2010-08-06 09:17:26 +0200 | [diff] [blame] | 162 | #elif defined(_BYTE_ORDER) && _BYTE_ORDER == _BIG_ENDIAN |
| 163 | # define BB_BIG_ENDIAN 1 |
| 164 | # define BB_LITTLE_ENDIAN 0 |
Denys Vlasenko | 867ffb9 | 2010-08-16 03:24:40 +0200 | [diff] [blame] | 165 | #elif defined(_BYTE_ORDER) && _BYTE_ORDER == _LITTLE_ENDIAN |
Mike Frysinger | f885513 | 2006-03-28 02:35:56 +0000 | [diff] [blame] | 166 | # define BB_BIG_ENDIAN 0 |
| 167 | # define BB_LITTLE_ENDIAN 1 |
Denys Vlasenko | 867ffb9 | 2010-08-16 03:24:40 +0200 | [diff] [blame] | 168 | #elif defined(BYTE_ORDER) && BYTE_ORDER == BIG_ENDIAN |
| 169 | # define BB_BIG_ENDIAN 1 |
| 170 | # define BB_LITTLE_ENDIAN 0 |
| 171 | #elif defined(BYTE_ORDER) && BYTE_ORDER == LITTLE_ENDIAN |
| 172 | # define BB_BIG_ENDIAN 0 |
| 173 | # define BB_LITTLE_ENDIAN 1 |
| 174 | #elif defined(__386__) |
Waldemar Brodkorb | 95b83ba | 2010-08-06 09:17:26 +0200 | [diff] [blame] | 175 | # define BB_BIG_ENDIAN 0 |
| 176 | # define BB_LITTLE_ENDIAN 1 |
Denys Vlasenko | 9b1b62a | 2009-07-05 03:34:12 +0200 | [diff] [blame] | 177 | #else |
Dan Fandrich | 21a542d | 2009-10-27 11:05:00 +0100 | [diff] [blame] | 178 | # error "Can't determine endianness" |
Rob Landley | 5cf7c2d | 2006-02-21 06:44:43 +0000 | [diff] [blame] | 179 | #endif |
| 180 | |
Denys Vlasenko | 9ff50b8 | 2010-10-18 11:40:26 +0200 | [diff] [blame] | 181 | #if ULONG_MAX > 0xffffffff |
| 182 | # define bb_bswap_64(x) bswap_64(x) |
| 183 | #endif |
| 184 | |
Denis Vlasenko | 9b0f6e1 | 2008-11-01 13:40:32 +0000 | [diff] [blame] | 185 | /* SWAP_LEnn means "convert CPU<->little_endian by swapping bytes" */ |
Rob Landley | bba7f08 | 2006-05-29 05:51:12 +0000 | [diff] [blame] | 186 | #if BB_BIG_ENDIAN |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 187 | # define SWAP_BE16(x) (x) |
| 188 | # define SWAP_BE32(x) (x) |
| 189 | # define SWAP_BE64(x) (x) |
| 190 | # define SWAP_LE16(x) bswap_16(x) |
| 191 | # define SWAP_LE32(x) bswap_32(x) |
Denys Vlasenko | 9ff50b8 | 2010-10-18 11:40:26 +0200 | [diff] [blame] | 192 | # define SWAP_LE64(x) bb_bswap_64(x) |
Denys Vlasenko | bcccad3 | 2010-10-16 20:46:35 +0200 | [diff] [blame] | 193 | # define IF_BIG_ENDIAN(...) __VA_ARGS__ |
| 194 | # define IF_LITTLE_ENDIAN(...) |
Rob Landley | bba7f08 | 2006-05-29 05:51:12 +0000 | [diff] [blame] | 195 | #else |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 196 | # define SWAP_BE16(x) bswap_16(x) |
| 197 | # define SWAP_BE32(x) bswap_32(x) |
Denys Vlasenko | 9ff50b8 | 2010-10-18 11:40:26 +0200 | [diff] [blame] | 198 | # define SWAP_BE64(x) bb_bswap_64(x) |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 199 | # define SWAP_LE16(x) (x) |
| 200 | # define SWAP_LE32(x) (x) |
| 201 | # define SWAP_LE64(x) (x) |
Denys Vlasenko | bcccad3 | 2010-10-16 20:46:35 +0200 | [diff] [blame] | 202 | # define IF_BIG_ENDIAN(...) |
| 203 | # define IF_LITTLE_ENDIAN(...) __VA_ARGS__ |
Rob Landley | bba7f08 | 2006-05-29 05:51:12 +0000 | [diff] [blame] | 204 | #endif |
| 205 | |
Denys Vlasenko | 89f5bfd | 2011-05-12 23:03:18 +0200 | [diff] [blame] | 206 | |
Denis Vlasenko | fc9e108 | 2008-05-26 17:32:35 +0000 | [diff] [blame] | 207 | /* ---- Unaligned access ------------------------------------ */ |
| 208 | |
Denys Vlasenko | 1f4a987 | 2011-01-22 17:31:35 +0100 | [diff] [blame] | 209 | #include <stdint.h> |
Denys Vlasenko | b40da22 | 2011-01-21 01:16:09 +0100 | [diff] [blame] | 210 | typedef int bb__aliased_int FIX_ALIASING; |
Lauri Kasanen | b8173b6 | 2013-01-14 05:20:50 +0100 | [diff] [blame] | 211 | typedef long bb__aliased_long FIX_ALIASING; |
Denys Vlasenko | b40da22 | 2011-01-21 01:16:09 +0100 | [diff] [blame] | 212 | typedef uint16_t bb__aliased_uint16_t FIX_ALIASING; |
| 213 | typedef uint32_t bb__aliased_uint32_t FIX_ALIASING; |
Denys Vlasenko | 1f5e81f | 2013-06-27 01:03:19 +0200 | [diff] [blame] | 214 | typedef uint64_t bb__aliased_uint64_t FIX_ALIASING; |
Denys Vlasenko | b40da22 | 2011-01-21 01:16:09 +0100 | [diff] [blame] | 215 | |
Denis Vlasenko | efb545b | 2008-12-08 22:56:18 +0000 | [diff] [blame] | 216 | /* NB: unaligned parameter should be a pointer, aligned one - |
| 217 | * a lvalue. This makes it more likely to not swap them by mistake |
| 218 | */ |
Joakim Tjernlund | 80f4275 | 2010-02-11 08:48:15 +0100 | [diff] [blame] | 219 | #if defined(i386) || defined(__x86_64__) || defined(__powerpc__) |
Lauri Kasanen | b8173b6 | 2013-01-14 05:20:50 +0100 | [diff] [blame] | 220 | # define move_from_unaligned_int(v, intp) ((v) = *(bb__aliased_int*)(intp)) |
| 221 | # define move_from_unaligned_long(v, longp) ((v) = *(bb__aliased_long*)(longp)) |
Denys Vlasenko | 12ca080 | 2010-02-04 18:41:18 +0100 | [diff] [blame] | 222 | # define move_from_unaligned16(v, u16p) ((v) = *(bb__aliased_uint16_t*)(u16p)) |
| 223 | # define move_from_unaligned32(v, u32p) ((v) = *(bb__aliased_uint32_t*)(u32p)) |
Denys Vlasenko | 5fb3849 | 2010-02-06 22:48:10 +0100 | [diff] [blame] | 224 | # define move_to_unaligned16(u16p, v) (*(bb__aliased_uint16_t*)(u16p) = (v)) |
Denys Vlasenko | 12ca080 | 2010-02-04 18:41:18 +0100 | [diff] [blame] | 225 | # define move_to_unaligned32(u32p, v) (*(bb__aliased_uint32_t*)(u32p) = (v)) |
Denis Vlasenko | 42b8daf | 2008-06-27 03:55:18 +0000 | [diff] [blame] | 226 | /* #elif ... - add your favorite arch today! */ |
Denis Vlasenko | fc9e108 | 2008-05-26 17:32:35 +0000 | [diff] [blame] | 227 | #else |
| 228 | /* performs reasonably well (gcc usually inlines memcpy here) */ |
Denys Vlasenko | 57be1ee | 2009-11-26 15:26:31 +0100 | [diff] [blame] | 229 | # define move_from_unaligned_int(v, intp) (memcpy(&(v), (intp), sizeof(int))) |
Lauri Kasanen | b8173b6 | 2013-01-14 05:20:50 +0100 | [diff] [blame] | 230 | # define move_from_unaligned_long(v, longp) (memcpy(&(v), (longp), sizeof(long))) |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 231 | # define move_from_unaligned16(v, u16p) (memcpy(&(v), (u16p), 2)) |
| 232 | # define move_from_unaligned32(v, u32p) (memcpy(&(v), (u32p), 4)) |
Denys Vlasenko | 5fb3849 | 2010-02-06 22:48:10 +0100 | [diff] [blame] | 233 | # define move_to_unaligned16(u16p, v) do { \ |
| 234 | uint16_t __t = (v); \ |
Denys Vlasenko | e3e3216 | 2013-02-27 15:49:38 +0100 | [diff] [blame] | 235 | memcpy((u16p), &__t, 2); \ |
Denys Vlasenko | 5fb3849 | 2010-02-06 22:48:10 +0100 | [diff] [blame] | 236 | } while (0) |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 237 | # define move_to_unaligned32(u32p, v) do { \ |
Denis Vlasenko | 3be2308 | 2009-04-17 22:20:44 +0000 | [diff] [blame] | 238 | uint32_t __t = (v); \ |
| 239 | memcpy((u32p), &__t, 4); \ |
| 240 | } while (0) |
Denis Vlasenko | fc9e108 | 2008-05-26 17:32:35 +0000 | [diff] [blame] | 241 | #endif |
| 242 | |
Denis Vlasenko | fc9e108 | 2008-05-26 17:32:35 +0000 | [diff] [blame] | 243 | |
Denys Vlasenko | 89f5bfd | 2011-05-12 23:03:18 +0200 | [diff] [blame] | 244 | /* ---- Size-saving "small" ints (arch-dependent) ----------- */ |
Bernhard Reutner-Fischer | be86209 | 2007-03-19 15:15:06 +0000 | [diff] [blame] | 245 | |
Bernhard Reutner-Fischer | c966ba4 | 2007-01-18 10:32:09 +0000 | [diff] [blame] | 246 | #if defined(i386) || defined(__x86_64__) || defined(__mips__) || defined(__cris__) |
| 247 | /* add other arches which benefit from this... */ |
| 248 | typedef signed char smallint; |
| 249 | typedef unsigned char smalluint; |
| 250 | #else |
| 251 | /* for arches where byte accesses generate larger code: */ |
| 252 | typedef int smallint; |
| 253 | typedef unsigned smalluint; |
| 254 | #endif |
| 255 | |
Bernhard Reutner-Fischer | a8e2e18 | 2007-01-20 21:27:18 +0000 | [diff] [blame] | 256 | /* ISO C Standard: 7.16 Boolean type and values <stdbool.h> */ |
| 257 | #if (defined __digital__ && defined __unix__) |
| 258 | /* old system without (proper) C99 support */ |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 259 | # define bool smalluint |
Bernhard Reutner-Fischer | a8e2e18 | 2007-01-20 21:27:18 +0000 | [diff] [blame] | 260 | #else |
| 261 | /* modern system, so use it */ |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 262 | # include <stdbool.h> |
Bernhard Reutner-Fischer | a8e2e18 | 2007-01-20 21:27:18 +0000 | [diff] [blame] | 263 | #endif |
| 264 | |
Denys Vlasenko | 89f5bfd | 2011-05-12 23:03:18 +0200 | [diff] [blame] | 265 | |
| 266 | /*----- Kernel versioning ------------------------------------*/ |
| 267 | |
| 268 | #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) |
| 269 | |
Mike Frysinger | 445e754 | 2013-03-12 11:13:22 -0400 | [diff] [blame] | 270 | #ifdef __UCLIBC__ |
| 271 | # define UCLIBC_VERSION KERNEL_VERSION(__UCLIBC_MAJOR__, __UCLIBC_MINOR__, __UCLIBC_SUBLEVEL__) |
| 272 | #else |
| 273 | # define UCLIBC_VERSION 0 |
| 274 | #endif |
| 275 | |
Denys Vlasenko | 89f5bfd | 2011-05-12 23:03:18 +0200 | [diff] [blame] | 276 | |
| 277 | /* ---- Miscellaneous --------------------------------------- */ |
| 278 | |
| 279 | #if defined __GLIBC__ \ |
| 280 | || defined __UCLIBC__ \ |
| 281 | || defined __dietlibc__ \ |
Denys Vlasenko | 14bd16a | 2011-07-08 08:49:40 +0200 | [diff] [blame] | 282 | || defined __BIONIC__ \ |
Denys Vlasenko | 89f5bfd | 2011-05-12 23:03:18 +0200 | [diff] [blame] | 283 | || defined _NEWLIB_VERSION |
| 284 | # include <features.h> |
| 285 | #endif |
| 286 | |
| 287 | /* Define bb_setpgrp */ |
| 288 | #if defined(__digital__) && defined(__unix__) |
| 289 | /* use legacy setpgrp(pid_t, pid_t) for now. move to platform.c */ |
| 290 | # define bb_setpgrp() do { pid_t __me = getpid(); setpgrp(__me, __me); } while (0) |
| 291 | #else |
| 292 | # define bb_setpgrp() setpgrp() |
| 293 | #endif |
| 294 | |
| 295 | /* fdprintf is more readable, we used it before dprintf was standardized */ |
| 296 | #include <unistd.h> |
| 297 | #define fdprintf dprintf |
| 298 | |
| 299 | /* Useful for defeating gcc's alignment of "char message[]"-like data */ |
Denys Vlasenko | 2ffd710 | 2012-08-06 17:17:15 +0200 | [diff] [blame] | 300 | #if !defined(__s390__) |
| 301 | /* on s390[x], non-word-aligned data accesses require larger code */ |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 302 | # define ALIGN1 __attribute__((aligned(1))) |
| 303 | # define ALIGN2 __attribute__((aligned(2))) |
Denys Vlasenko | 0ecc116 | 2010-04-14 10:14:25 -0700 | [diff] [blame] | 304 | # define ALIGN4 __attribute__((aligned(4))) |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 305 | #else |
| 306 | /* Arches which MUST have 2 or 4 byte alignment for everything are here */ |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 307 | # define ALIGN1 |
| 308 | # define ALIGN2 |
Denys Vlasenko | 0ecc116 | 2010-04-14 10:14:25 -0700 | [diff] [blame] | 309 | # define ALIGN4 |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 310 | #endif |
| 311 | |
Denys Vlasenko | 89f5bfd | 2011-05-12 23:03:18 +0200 | [diff] [blame] | 312 | /* |
Bernhard Reutner-Fischer | 507cd75 | 2006-05-31 10:04:03 +0000 | [diff] [blame] | 313 | * For 0.9.29 and svn, __ARCH_USE_MMU__ indicates no-mmu reliably. |
| 314 | * For earlier versions there is no reliable way to check if we are building |
Denis Vlasenko | 9e58921 | 2008-01-24 01:33:42 +0000 | [diff] [blame] | 315 | * for a mmu-less system. |
Bernhard Reutner-Fischer | 507cd75 | 2006-05-31 10:04:03 +0000 | [diff] [blame] | 316 | */ |
Denis Vlasenko | d2c450c | 2008-01-08 20:32:12 +0000 | [diff] [blame] | 317 | #if ENABLE_NOMMU || \ |
Mike Frysinger | 445e754 | 2013-03-12 11:13:22 -0400 | [diff] [blame] | 318 | (defined __UCLIBC__ && \ |
| 319 | UCLIBC_VERSION > KERNEL_VERSION(0, 9, 28) && \ |
| 320 | !defined __ARCH_USE_MMU__) |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 321 | # define BB_MMU 0 |
| 322 | # define USE_FOR_NOMMU(...) __VA_ARGS__ |
| 323 | # define USE_FOR_MMU(...) |
Denis Vlasenko | 473dae0 | 2007-04-11 07:04:23 +0000 | [diff] [blame] | 324 | #else |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 325 | # define BB_MMU 1 |
| 326 | # define USE_FOR_NOMMU(...) |
| 327 | # define USE_FOR_MMU(...) __VA_ARGS__ |
Bernhard Reutner-Fischer | 507cd75 | 2006-05-31 10:04:03 +0000 | [diff] [blame] | 328 | #endif |
| 329 | |
Denys Vlasenko | 9b1b62a | 2009-07-05 03:34:12 +0200 | [diff] [blame] | 330 | #if defined(__digital__) && defined(__unix__) |
Denis Vlasenko | 6ebb2f5 | 2008-12-03 10:46:12 +0000 | [diff] [blame] | 331 | # include <standards.h> |
Denis Vlasenko | 6ebb2f5 | 2008-12-03 10:46:12 +0000 | [diff] [blame] | 332 | # include <inttypes.h> |
Denis Vlasenko | 6ebb2f5 | 2008-12-03 10:46:12 +0000 | [diff] [blame] | 333 | # define PRIu32 "u" |
Denis Vlasenko | 6ebb2f5 | 2008-12-03 10:46:12 +0000 | [diff] [blame] | 334 | # if !defined ADJ_OFFSET_SINGLESHOT && defined MOD_CLKA && defined MOD_OFFSET |
| 335 | # define ADJ_OFFSET_SINGLESHOT (MOD_CLKA | MOD_OFFSET) |
| 336 | # endif |
| 337 | # if !defined ADJ_FREQUENCY && defined MOD_FREQUENCY |
| 338 | # define ADJ_FREQUENCY MOD_FREQUENCY |
| 339 | # endif |
| 340 | # if !defined ADJ_TIMECONST && defined MOD_TIMECONST |
| 341 | # define ADJ_TIMECONST MOD_TIMECONST |
| 342 | # endif |
| 343 | # if !defined ADJ_TICK && defined MOD_CLKB |
| 344 | # define ADJ_TICK MOD_CLKB |
| 345 | # endif |
Rob Landley | 18958e9 | 2006-06-13 18:28:33 +0000 | [diff] [blame] | 346 | #endif |
| 347 | |
Denys Vlasenko | 4dc35fb | 2011-07-08 04:41:38 +0200 | [diff] [blame] | 348 | #if defined(__CYGWIN__) |
| 349 | # define MAXSYMLINKS SYMLOOP_MAX |
| 350 | #endif |
| 351 | |
Tias Guns | 3645195 | 2012-06-10 14:26:32 +0200 | [diff] [blame] | 352 | #if defined(ANDROID) || defined(__ANDROID__) |
| 353 | # define BB_ADDITIONAL_PATH ":/system/sbin:/system/bin:/system/xbin" |
| 354 | # define SYS_ioprio_set __NR_ioprio_set |
| 355 | # define SYS_ioprio_get __NR_ioprio_get |
| 356 | #endif |
| 357 | |
Denys Vlasenko | 89f5bfd | 2011-05-12 23:03:18 +0200 | [diff] [blame] | 358 | |
| 359 | /* ---- Who misses what? ------------------------------------ */ |
| 360 | |
Dan Fandrich | f533ec8 | 2011-06-10 05:17:59 +0200 | [diff] [blame] | 361 | /* Assume all these functions and header files exist by default. |
| 362 | * Platforms where it is not true will #undef them below. |
Denys Vlasenko | 89f5bfd | 2011-05-12 23:03:18 +0200 | [diff] [blame] | 363 | */ |
| 364 | #define HAVE_CLEARENV 1 |
| 365 | #define HAVE_FDATASYNC 1 |
| 366 | #define HAVE_DPRINTF 1 |
| 367 | #define HAVE_MEMRCHR 1 |
| 368 | #define HAVE_MKDTEMP 1 |
| 369 | #define HAVE_PTSNAME_R 1 |
| 370 | #define HAVE_SETBIT 1 |
| 371 | #define HAVE_SIGHANDLER_T 1 |
| 372 | #define HAVE_STPCPY 1 |
Denys Vlasenko | 50a6d86 | 2015-01-25 22:08:46 +0100 | [diff] [blame^] | 373 | #define HAVE_MEMPCPY 1 |
Denys Vlasenko | 89f5bfd | 2011-05-12 23:03:18 +0200 | [diff] [blame] | 374 | #define HAVE_STRCASESTR 1 |
| 375 | #define HAVE_STRCHRNUL 1 |
| 376 | #define HAVE_STRSEP 1 |
| 377 | #define HAVE_STRSIGNAL 1 |
Denys Vlasenko | 561f9c8 | 2011-06-21 16:38:29 +0200 | [diff] [blame] | 378 | #define HAVE_STRVERSCMP 1 |
Denys Vlasenko | 89f5bfd | 2011-05-12 23:03:18 +0200 | [diff] [blame] | 379 | #define HAVE_VASPRINTF 1 |
Bernhard Reutner-Fischer | ad16741 | 2014-04-13 16:37:57 +0200 | [diff] [blame] | 380 | #define HAVE_USLEEP 1 |
Dan Fandrich | 75214cf | 2011-06-30 02:59:17 +0200 | [diff] [blame] | 381 | #define HAVE_UNLOCKED_STDIO 1 |
| 382 | #define HAVE_UNLOCKED_LINE_OPS 1 |
Timo Teras | 0a5b310 | 2011-06-29 02:19:58 +0200 | [diff] [blame] | 383 | #define HAVE_GETLINE 1 |
Denys Vlasenko | 89f5bfd | 2011-05-12 23:03:18 +0200 | [diff] [blame] | 384 | #define HAVE_XTABS 1 |
Dan Fandrich | f533ec8 | 2011-06-10 05:17:59 +0200 | [diff] [blame] | 385 | #define HAVE_MNTENT_H 1 |
| 386 | #define HAVE_NET_ETHERNET_H 1 |
| 387 | #define HAVE_SYS_STATFS_H 1 |
| 388 | |
Bernhard Reutner-Fischer | ad16741 | 2014-04-13 16:37:57 +0200 | [diff] [blame] | 389 | #if defined(__UCLIBC__) |
| 390 | # if UCLIBC_VERSION < KERNEL_VERSION(0, 9, 32) |
| 391 | # undef HAVE_STRVERSCMP |
| 392 | # endif |
| 393 | # if UCLIBC_VERSION >= KERNEL_VERSION(0, 9, 30) |
| 394 | # ifndef __UCLIBC_SUSV3_LEGACY__ |
| 395 | # undef HAVE_USLEEP |
| 396 | # endif |
| 397 | # endif |
Denys Vlasenko | 1e18a01 | 2011-06-21 17:12:52 +0200 | [diff] [blame] | 398 | #endif |
| 399 | |
Dan Fandrich | 21a542d | 2009-10-27 11:05:00 +0100 | [diff] [blame] | 400 | #if defined(__WATCOMC__) |
Denys Vlasenko | 47061b4 | 2011-04-17 23:14:19 +0200 | [diff] [blame] | 401 | # undef HAVE_DPRINTF |
Dan Fandrich | 0e79e7b | 2011-06-28 23:03:27 -0700 | [diff] [blame] | 402 | # undef HAVE_GETLINE |
Dan Fandrich | fe4e23f | 2009-11-01 04:01:30 +0100 | [diff] [blame] | 403 | # undef HAVE_MEMRCHR |
| 404 | # undef HAVE_MKDTEMP |
| 405 | # undef HAVE_SETBIT |
Dan Fandrich | dc50676 | 2011-02-12 22:26:57 -0800 | [diff] [blame] | 406 | # undef HAVE_STPCPY |
Dan Fandrich | fe4e23f | 2009-11-01 04:01:30 +0100 | [diff] [blame] | 407 | # undef HAVE_STRCASESTR |
| 408 | # undef HAVE_STRCHRNUL |
Dan Fandrich | 0635ddd | 2010-06-18 22:36:45 -0700 | [diff] [blame] | 409 | # undef HAVE_STRSEP |
Dan Fandrich | fe4e23f | 2009-11-01 04:01:30 +0100 | [diff] [blame] | 410 | # undef HAVE_STRSIGNAL |
Denys Vlasenko | 561f9c8 | 2011-06-21 16:38:29 +0200 | [diff] [blame] | 411 | # undef HAVE_STRVERSCMP |
Dan Fandrich | fe4e23f | 2009-11-01 04:01:30 +0100 | [diff] [blame] | 412 | # undef HAVE_VASPRINTF |
Dan Fandrich | 75214cf | 2011-06-30 02:59:17 +0200 | [diff] [blame] | 413 | # undef HAVE_UNLOCKED_STDIO |
| 414 | # undef HAVE_UNLOCKED_LINE_OPS |
Dan Fandrich | f533ec8 | 2011-06-10 05:17:59 +0200 | [diff] [blame] | 415 | # undef HAVE_NET_ETHERNET_H |
Dan Fandrich | 21a542d | 2009-10-27 11:05:00 +0100 | [diff] [blame] | 416 | #endif |
| 417 | |
Denys Vlasenko | 4dc35fb | 2011-07-08 04:41:38 +0200 | [diff] [blame] | 418 | #if defined(__CYGWIN__) |
| 419 | # undef HAVE_CLEARENV |
| 420 | # undef HAVE_FDPRINTF |
| 421 | # undef HAVE_MEMRCHR |
| 422 | # undef HAVE_PTSNAME_R |
| 423 | # undef HAVE_STRVERSCMP |
| 424 | # undef HAVE_UNLOCKED_LINE_OPS |
| 425 | #endif |
| 426 | |
Dan Fandrich | 0e79e7b | 2011-06-28 23:03:27 -0700 | [diff] [blame] | 427 | /* These BSD-derived OSes share many similarities */ |
Denys Vlasenko | 89f5bfd | 2011-05-12 23:03:18 +0200 | [diff] [blame] | 428 | #if (defined __digital__ && defined __unix__) \ |
| 429 | || defined __APPLE__ \ |
Denys Vlasenko | 8e0ad26 | 2014-01-08 15:10:54 +0100 | [diff] [blame] | 430 | || defined __OpenBSD__ || defined __NetBSD__ |
Denys Vlasenko | 89f5bfd | 2011-05-12 23:03:18 +0200 | [diff] [blame] | 431 | # undef HAVE_CLEARENV |
| 432 | # undef HAVE_FDATASYNC |
Dan Fandrich | 0e79e7b | 2011-06-28 23:03:27 -0700 | [diff] [blame] | 433 | # undef HAVE_GETLINE |
Denys Vlasenko | 89f5bfd | 2011-05-12 23:03:18 +0200 | [diff] [blame] | 434 | # undef HAVE_MNTENT_H |
| 435 | # undef HAVE_PTSNAME_R |
| 436 | # undef HAVE_SYS_STATFS_H |
| 437 | # undef HAVE_SIGHANDLER_T |
Denys Vlasenko | 561f9c8 | 2011-06-21 16:38:29 +0200 | [diff] [blame] | 438 | # undef HAVE_STRVERSCMP |
Denys Vlasenko | 89f5bfd | 2011-05-12 23:03:18 +0200 | [diff] [blame] | 439 | # undef HAVE_XTABS |
| 440 | # undef HAVE_DPRINTF |
Matthias Andree | 1285437 | 2011-08-28 05:04:07 +0200 | [diff] [blame] | 441 | # undef HAVE_UNLOCKED_STDIO |
| 442 | # undef HAVE_UNLOCKED_LINE_OPS |
Denys Vlasenko | 89f5bfd | 2011-05-12 23:03:18 +0200 | [diff] [blame] | 443 | #endif |
| 444 | |
Denys Vlasenko | 432fbd7 | 2014-01-07 14:09:47 +0100 | [diff] [blame] | 445 | #if defined(__dietlibc__) |
Dan Fandrich | 0e79e7b | 2011-06-28 23:03:27 -0700 | [diff] [blame] | 446 | # undef HAVE_STRCHRNUL |
| 447 | #endif |
| 448 | |
Denys Vlasenko | 432fbd7 | 2014-01-07 14:09:47 +0100 | [diff] [blame] | 449 | #if defined(__APPLE__) |
| 450 | # undef HAVE_STRCHRNUL |
| 451 | #endif |
| 452 | |
| 453 | #if defined(__FreeBSD__) |
Denys Vlasenko | 50a6d86 | 2015-01-25 22:08:46 +0100 | [diff] [blame^] | 454 | //# undef HAVE_MEMPCPY - not yet confirmed |
Denys Vlasenko | 8e0ad26 | 2014-01-08 15:10:54 +0100 | [diff] [blame] | 455 | # undef HAVE_CLEARENV |
| 456 | # undef HAVE_FDATASYNC |
| 457 | # undef HAVE_MNTENT_H |
| 458 | # undef HAVE_PTSNAME_R |
| 459 | # undef HAVE_SYS_STATFS_H |
| 460 | # undef HAVE_SIGHANDLER_T |
| 461 | # undef HAVE_STRVERSCMP |
| 462 | # undef HAVE_XTABS |
| 463 | # undef HAVE_UNLOCKED_LINE_OPS |
| 464 | # include <osreldate.h> |
Denys Vlasenko | 432fbd7 | 2014-01-07 14:09:47 +0100 | [diff] [blame] | 465 | # if __FreeBSD_version < 1000029 |
Denys Vlasenko | 8e0ad26 | 2014-01-08 15:10:54 +0100 | [diff] [blame] | 466 | # undef HAVE_STRCHRNUL /* FreeBSD added strchrnul() between 1000028 and 1000029 */ |
Denys Vlasenko | 432fbd7 | 2014-01-07 14:09:47 +0100 | [diff] [blame] | 467 | # endif |
| 468 | #endif |
| 469 | |
Dan Fandrich | 0e79e7b | 2011-06-28 23:03:27 -0700 | [diff] [blame] | 470 | #if defined(__NetBSD__) |
| 471 | # define HAVE_GETLINE 1 /* Recent NetBSD versions have getline() */ |
| 472 | #endif |
| 473 | |
Denys Vlasenko | 89f5bfd | 2011-05-12 23:03:18 +0200 | [diff] [blame] | 474 | #if defined(__digital__) && defined(__unix__) |
| 475 | # undef HAVE_STPCPY |
| 476 | #endif |
| 477 | |
Denys Vlasenko | e0894f5 | 2011-09-09 18:00:44 +0200 | [diff] [blame] | 478 | #if defined(ANDROID) || defined(__ANDROID__) |
Dan Fandrich | 71d7313 | 2011-06-03 20:51:58 +0200 | [diff] [blame] | 479 | # undef HAVE_DPRINTF |
Dan Fandrich | 0e79e7b | 2011-06-28 23:03:27 -0700 | [diff] [blame] | 480 | # undef HAVE_GETLINE |
Dan Fandrich | 71d7313 | 2011-06-03 20:51:58 +0200 | [diff] [blame] | 481 | # undef HAVE_STPCPY |
| 482 | # undef HAVE_STRCHRNUL |
Denys Vlasenko | 561f9c8 | 2011-06-21 16:38:29 +0200 | [diff] [blame] | 483 | # undef HAVE_STRVERSCMP |
Dan Fandrich | 75214cf | 2011-06-30 02:59:17 +0200 | [diff] [blame] | 484 | # undef HAVE_UNLOCKED_LINE_OPS |
Dan Fandrich | f533ec8 | 2011-06-10 05:17:59 +0200 | [diff] [blame] | 485 | # undef HAVE_NET_ETHERNET_H |
Dan Fandrich | 71d7313 | 2011-06-03 20:51:58 +0200 | [diff] [blame] | 486 | #endif |
| 487 | |
Dan Fandrich | 21a542d | 2009-10-27 11:05:00 +0100 | [diff] [blame] | 488 | /* |
| 489 | * Now, define prototypes for all the functions defined in platform.c |
| 490 | * These must come after all the HAVE_* macros are defined (or not) |
| 491 | */ |
| 492 | |
Denys Vlasenko | 47061b4 | 2011-04-17 23:14:19 +0200 | [diff] [blame] | 493 | #ifndef HAVE_DPRINTF |
| 494 | extern int dprintf(int fd, const char *format, ...); |
Dan Fandrich | fe4e23f | 2009-11-01 04:01:30 +0100 | [diff] [blame] | 495 | #endif |
| 496 | |
| 497 | #ifndef HAVE_MEMRCHR |
| 498 | extern void *memrchr(const void *s, int c, size_t n) FAST_FUNC; |
| 499 | #endif |
| 500 | |
| 501 | #ifndef HAVE_MKDTEMP |
| 502 | extern char *mkdtemp(char *template) FAST_FUNC; |
| 503 | #endif |
| 504 | |
| 505 | #ifndef HAVE_SETBIT |
| 506 | # define setbit(a, b) ((a)[(b) >> 3] |= 1 << ((b) & 7)) |
| 507 | # define clrbit(a, b) ((a)[(b) >> 3] &= ~(1 << ((b) & 7))) |
| 508 | #endif |
| 509 | |
Chris Rees | 9ad97d5 | 2011-01-20 00:51:52 +0100 | [diff] [blame] | 510 | #ifndef HAVE_SIGHANDLER_T |
| 511 | typedef void (*sighandler_t)(int); |
| 512 | #endif |
| 513 | |
Dan Fandrich | dc50676 | 2011-02-12 22:26:57 -0800 | [diff] [blame] | 514 | #ifndef HAVE_STPCPY |
| 515 | extern char *stpcpy(char *p, const char *to_add) FAST_FUNC; |
| 516 | #endif |
| 517 | |
Denys Vlasenko | 50a6d86 | 2015-01-25 22:08:46 +0100 | [diff] [blame^] | 518 | #ifndef HAVE_MEMPCPY |
| 519 | static ALWAYS_INLINE void *mempcpy(void *dest, const void *src, size_t len) |
| 520 | { |
| 521 | return memcpy(dest, src, len) + len; |
| 522 | } |
| 523 | #endif |
| 524 | |
Dan Fandrich | fe4e23f | 2009-11-01 04:01:30 +0100 | [diff] [blame] | 525 | #ifndef HAVE_STRCASESTR |
| 526 | extern char *strcasestr(const char *s, const char *pattern) FAST_FUNC; |
| 527 | #endif |
| 528 | |
Dan Fandrich | 21a542d | 2009-10-27 11:05:00 +0100 | [diff] [blame] | 529 | #ifndef HAVE_STRCHRNUL |
| 530 | extern char *strchrnul(const char *s, int c) FAST_FUNC; |
| 531 | #endif |
| 532 | |
Dan Fandrich | 0635ddd | 2010-06-18 22:36:45 -0700 | [diff] [blame] | 533 | #ifndef HAVE_STRSEP |
| 534 | extern char *strsep(char **stringp, const char *delim) FAST_FUNC; |
| 535 | #endif |
| 536 | |
Dan Fandrich | fe4e23f | 2009-11-01 04:01:30 +0100 | [diff] [blame] | 537 | #ifndef HAVE_STRSIGNAL |
| 538 | /* Not exactly the same: instead of "Stopped" it shows "STOP" etc */ |
| 539 | # define strsignal(sig) get_signame(sig) |
Dan Fandrich | 21a542d | 2009-10-27 11:05:00 +0100 | [diff] [blame] | 540 | #endif |
| 541 | |
Bernhard Reutner-Fischer | ad16741 | 2014-04-13 16:37:57 +0200 | [diff] [blame] | 542 | #ifndef HAVE_USLEEP |
| 543 | extern int usleep(unsigned) FAST_FUNC; |
| 544 | #endif |
| 545 | |
Dan Fandrich | fe4e23f | 2009-11-01 04:01:30 +0100 | [diff] [blame] | 546 | #ifndef HAVE_VASPRINTF |
| 547 | extern int vasprintf(char **string_ptr, const char *format, va_list p) FAST_FUNC; |
Dan Fandrich | 21a542d | 2009-10-27 11:05:00 +0100 | [diff] [blame] | 548 | #endif |
Denys Vlasenko | 5a49d28 | 2009-05-19 13:18:45 +0200 | [diff] [blame] | 549 | |
Timo Teras | 0a5b310 | 2011-06-29 02:19:58 +0200 | [diff] [blame] | 550 | #ifndef HAVE_GETLINE |
Denys Vlasenko | 14bd16a | 2011-07-08 08:49:40 +0200 | [diff] [blame] | 551 | # include <stdio.h> /* for FILE */ |
| 552 | # include <sys/types.h> /* size_t */ |
Timo Teras | 0a5b310 | 2011-06-29 02:19:58 +0200 | [diff] [blame] | 553 | extern ssize_t getline(char **lineptr, size_t *n, FILE *stream) FAST_FUNC; |
| 554 | #endif |
| 555 | |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 556 | #endif |