blob: 1cc588690554a20a3c2817e136e983fbd640aa2a [file] [log] [blame]
Bernhard Reutner-Fischerb1629b12006-05-19 19:29:19 +00001/* vi: set sw=4 ts=4: */
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +00002/*
Bernhard Reutner-Fischer6c4dade2008-09-25 12:13:34 +00003 Copyright 2006, Bernhard Reutner-Fischer
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +00004
5 Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
6*/
Denis Vlasenkof81e8db2009-04-09 12:35:13 +00007#ifndef BB_PLATFORM_H
8#define BB_PLATFORM_H 1
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +00009
Dan Fandrich21a542d2009-10-27 11:05:00 +010010/* Assume all these functions exist by default. Platforms where it is not
11 * true will #undef them below.
12 */
13#define HAVE_FDPRINTF 1
Dan Fandrichfe4e23f2009-11-01 04:01:30 +010014#define HAVE_MEMRCHR 1
15#define HAVE_MKDTEMP 1
16#define HAVE_SETBIT 1
17#define HAVE_STRCASESTR 1
Dan Fandrich21a542d2009-10-27 11:05:00 +010018#define HAVE_STRCHRNUL 1
Dan Fandrich0635ddd2010-06-18 22:36:45 -070019#define HAVE_STRSEP 1
Dan Fandrichfe4e23f2009-11-01 04:01:30 +010020#define HAVE_STRSIGNAL 1
Dan Fandrich21a542d2009-10-27 11:05:00 +010021#define HAVE_VASPRINTF 1
22
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000023/* Convenience macros to test the version of gcc. */
24#undef __GNUC_PREREQ
25#if defined __GNUC__ && defined __GNUC_MINOR__
26# define __GNUC_PREREQ(maj, min) \
Denis Vlasenko9213a9e2006-09-17 16:28:10 +000027 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000028#else
29# define __GNUC_PREREQ(maj, min) 0
30#endif
31
32/* __restrict is known in EGCS 1.2 and above. */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000033#if !__GNUC_PREREQ(2,92)
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000034# ifndef __restrict
Denys Vlasenko5a49d282009-05-19 13:18:45 +020035# define __restrict
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000036# endif
37#endif
38
39/* Define macros for some gcc attributes. This permits us to use the
40 macros freely, and know that they will come into play for the
41 version of gcc in which they are supported. */
42
Denis Vlasenko98636eb2008-05-09 17:59:34 +000043#if !__GNUC_PREREQ(2,7)
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000044# ifndef __attribute__
45# define __attribute__(x)
46# endif
47#endif
48
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000049#undef inline
Denis Vlasenkoa7189f02006-11-17 20:29:00 +000050#if defined(__STDC_VERSION__) && __STDC_VERSION__ > 199901L
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000051/* it's a keyword */
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +020052#elif __GNUC_PREREQ(2,7)
53# define inline __inline__
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000054#else
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +020055# define inline
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000056#endif
57
58#ifndef __const
59# define __const const
60#endif
61
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000062#define UNUSED_PARAM __attribute__ ((__unused__))
63#define NORETURN __attribute__ ((__noreturn__))
Denys Vlasenko53283ad2009-11-02 14:20:34 +010064/* "The malloc attribute is used to tell the compiler that a function
65 * may be treated as if any non-NULL pointer it returns cannot alias
66 * any other pointer valid when the function returns. This will often
67 * improve optimization. Standard functions with this property include
68 * malloc and calloc. realloc-like functions have this property as long
69 * as the old pointer is never referred to (including comparing it
70 * to the new pointer) after the function returns a non-NULL value."
71 */
72#define RETURNS_MALLOC __attribute__ ((malloc))
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000073#define PACKED __attribute__ ((__packed__))
74#define ALIGNED(m) __attribute__ ((__aligned__(m)))
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +020075
Denis Vlasenko0f3a5802008-03-20 13:13:09 +000076/* __NO_INLINE__: some gcc's do not honor inlining! :( */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000077#if __GNUC_PREREQ(3,0) && !defined(__NO_INLINE__)
78# define ALWAYS_INLINE __attribute__ ((always_inline)) inline
Denis Vlasenko77f1ec12007-10-13 03:36:03 +000079/* I've seen a toolchain where I needed __noinline__ instead of noinline */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000080# define NOINLINE __attribute__((__noinline__))
81# if !ENABLE_WERROR
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000082# define DEPRECATED __attribute__ ((__deprecated__))
83# define UNUSED_PARAM_RESULT __attribute__ ((warn_unused_result))
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000084# else
Denys Vlasenko5a49d282009-05-19 13:18:45 +020085# define DEPRECATED
86# define UNUSED_PARAM_RESULT
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000087# endif
Denis Vlasenko98636eb2008-05-09 17:59:34 +000088#else
Denys Vlasenko5a49d282009-05-19 13:18:45 +020089# define ALWAYS_INLINE inline
90# define NOINLINE
91# define DEPRECATED
92# define UNUSED_PARAM_RESULT
Denis Vlasenko98636eb2008-05-09 17:59:34 +000093#endif
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000094
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000095/* -fwhole-program makes all symbols local. The attribute externally_visible
96 forces a symbol global. */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000097#if __GNUC_PREREQ(4,1)
98# define EXTERNALLY_VISIBLE __attribute__(( visibility("default") ))
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000099//__attribute__ ((__externally_visible__))
Denis Vlasenko98636eb2008-05-09 17:59:34 +0000100#else
101# define EXTERNALLY_VISIBLE
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000102#endif
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +0000103
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100104/* At 4.4 gcc become much more anal about this, need to use "aliased" types */
105#if __GNUC_PREREQ(4,4)
106# define FIX_ALIASING __attribute__((__may_alias__))
107#else
108# define FIX_ALIASING
109#endif
110
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +0000111/* We use __extension__ in some places to suppress -pedantic warnings
112 about GCC extensions. This feature didn't work properly before
113 gcc 2.8. */
Denis Vlasenko98636eb2008-05-09 17:59:34 +0000114#if !__GNUC_PREREQ(2,8)
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +0000115# ifndef __extension__
116# define __extension__
117# endif
118#endif
119
Bernhard Reutner-Fischerb5f50ea2006-09-12 13:27:55 +0000120/* gcc-2.95 had no va_copy but only __va_copy. */
Denis Vlasenko98636eb2008-05-09 17:59:34 +0000121#if !__GNUC_PREREQ(3,0)
Bernhard Reutner-Fischerb5f50ea2006-09-12 13:27:55 +0000122# include <stdarg.h>
123# if !defined va_copy && defined __va_copy
124# define va_copy(d,s) __va_copy((d),(s))
125# endif
126#endif
127
Denis Vlasenko42b8daf2008-06-27 03:55:18 +0000128/* FAST_FUNC is a qualifier which (possibly) makes function call faster
129 * and/or smaller by using modified ABI. It is usually only needed
130 * on non-static, busybox internal functions. Recent versions of gcc
131 * optimize statics automatically. FAST_FUNC on static is required
132 * only if you need to match a function pointer's type */
Denis Vlasenkoac2b50e2008-06-27 04:30:48 +0000133#if __GNUC_PREREQ(3,0) && defined(i386) /* || defined(__x86_64__)? */
134/* stdcall makes callee to pop arguments from stack, not caller */
135# define FAST_FUNC __attribute__((regparm(3),stdcall))
Denis Vlasenko42b8daf2008-06-27 03:55:18 +0000136/* #elif ... - add your favorite arch today! */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000137#else
138# define FAST_FUNC
139#endif
140
Denis Vlasenkof81e8db2009-04-09 12:35:13 +0000141/* Make all declarations hidden (-fvisibility flag only affects definitions) */
142/* (don't include system headers after this until corresponding pop!) */
143#if __GNUC_PREREQ(4,1)
144# define PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN _Pragma("GCC visibility push(hidden)")
145# define POP_SAVED_FUNCTION_VISIBILITY _Pragma("GCC visibility pop")
146#else
147# define PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
148# define POP_SAVED_FUNCTION_VISIBILITY
149#endif
150
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000151/* ---- Endian Detection ------------------------------------ */
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000152
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200153#if defined(__digital__) && defined(__unix__)
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000154# include <sex.h>
155# define __BIG_ENDIAN__ (BYTE_ORDER == BIG_ENDIAN)
156# define __BYTE_ORDER BYTE_ORDER
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200157#elif defined __FreeBSD__
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200158# include <sys/resource.h> /* rlimit */
159# include <machine/endian.h>
160# define bswap_64 __bswap64
161# define bswap_32 __bswap32
162# define bswap_16 __bswap16
163# define __BIG_ENDIAN__ (_BYTE_ORDER == _BIG_ENDIAN)
Waldemar Brodkorb95b83ba2010-08-06 09:17:26 +0200164#elif !defined __APPLE__ && !defined __OpenBSD__
Rob Landley15d20a02006-05-29 05:00:44 +0000165# include <byteswap.h>
166# include <endian.h>
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000167#endif
168
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200169#if defined(__BIG_ENDIAN__) && __BIG_ENDIAN__
Mike Frysingerf8855132006-03-28 02:35:56 +0000170# define BB_BIG_ENDIAN 1
171# define BB_LITTLE_ENDIAN 0
Dan Fandrichfdd7b562010-06-18 22:37:42 -0700172#elif defined(__BYTE_ORDER) && __BYTE_ORDER == __BIG_ENDIAN
Mike Frysingerf8855132006-03-28 02:35:56 +0000173# define BB_BIG_ENDIAN 1
174# define BB_LITTLE_ENDIAN 0
Waldemar Brodkorb95b83ba2010-08-06 09:17:26 +0200175#elif defined(_BYTE_ORDER) && _BYTE_ORDER == _BIG_ENDIAN
176# define BB_BIG_ENDIAN 1
177# define BB_LITTLE_ENDIAN 0
Dan Fandrichfdd7b562010-06-18 22:37:42 -0700178#elif (defined(__BYTE_ORDER) && __BYTE_ORDER == __LITTLE_ENDIAN) || defined(__386__)
Mike Frysingerf8855132006-03-28 02:35:56 +0000179# define BB_BIG_ENDIAN 0
180# define BB_LITTLE_ENDIAN 1
Waldemar Brodkorb95b83ba2010-08-06 09:17:26 +0200181#elif defined(_BYTE_ORDER) && _BYTE_ORDER == _LITTLE_ENDIAN
182# define BB_BIG_ENDIAN 0
183# define BB_LITTLE_ENDIAN 1
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200184#else
Dan Fandrich21a542d2009-10-27 11:05:00 +0100185# error "Can't determine endianness"
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000186#endif
187
Denis Vlasenko9b0f6e12008-11-01 13:40:32 +0000188/* SWAP_LEnn means "convert CPU<->little_endian by swapping bytes" */
Rob Landleybba7f082006-05-29 05:51:12 +0000189#if BB_BIG_ENDIAN
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200190# define SWAP_BE16(x) (x)
191# define SWAP_BE32(x) (x)
192# define SWAP_BE64(x) (x)
193# define SWAP_LE16(x) bswap_16(x)
194# define SWAP_LE32(x) bswap_32(x)
195# define SWAP_LE64(x) bswap_64(x)
Rob Landleybba7f082006-05-29 05:51:12 +0000196#else
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200197# define SWAP_BE16(x) bswap_16(x)
198# define SWAP_BE32(x) bswap_32(x)
199# define SWAP_BE64(x) bswap_64(x)
200# define SWAP_LE16(x) (x)
201# define SWAP_LE32(x) (x)
202# define SWAP_LE64(x) (x)
Rob Landleybba7f082006-05-29 05:51:12 +0000203#endif
204
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000205/* ---- Unaligned access ------------------------------------ */
206
Denis Vlasenkoefb545b2008-12-08 22:56:18 +0000207/* NB: unaligned parameter should be a pointer, aligned one -
208 * a lvalue. This makes it more likely to not swap them by mistake
209 */
Joakim Tjernlund80f42752010-02-11 08:48:15 +0100210#if defined(i386) || defined(__x86_64__) || defined(__powerpc__)
Denys Vlasenko12ca0802010-02-04 18:41:18 +0100211# include <stdint.h>
212typedef int bb__aliased_int FIX_ALIASING;
213typedef uint16_t bb__aliased_uint16_t FIX_ALIASING;
214typedef uint32_t bb__aliased_uint32_t FIX_ALIASING;
215# define move_from_unaligned_int(v, intp) ((v) = *(bb__aliased_int*)(intp))
216# define move_from_unaligned16(v, u16p) ((v) = *(bb__aliased_uint16_t*)(u16p))
217# define move_from_unaligned32(v, u32p) ((v) = *(bb__aliased_uint32_t*)(u32p))
Denys Vlasenko5fb38492010-02-06 22:48:10 +0100218# define move_to_unaligned16(u16p, v) (*(bb__aliased_uint16_t*)(u16p) = (v))
Denys Vlasenko12ca0802010-02-04 18:41:18 +0100219# define move_to_unaligned32(u32p, v) (*(bb__aliased_uint32_t*)(u32p) = (v))
Denis Vlasenko42b8daf2008-06-27 03:55:18 +0000220/* #elif ... - add your favorite arch today! */
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000221#else
222/* performs reasonably well (gcc usually inlines memcpy here) */
Denys Vlasenko57be1ee2009-11-26 15:26:31 +0100223# define move_from_unaligned_int(v, intp) (memcpy(&(v), (intp), sizeof(int)))
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200224# define move_from_unaligned16(v, u16p) (memcpy(&(v), (u16p), 2))
225# define move_from_unaligned32(v, u32p) (memcpy(&(v), (u32p), 4))
Denys Vlasenko5fb38492010-02-06 22:48:10 +0100226# define move_to_unaligned16(u16p, v) do { \
227 uint16_t __t = (v); \
228 memcpy((u16p), &__t, 4); \
229} while (0)
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200230# define move_to_unaligned32(u32p, v) do { \
Denis Vlasenko3be23082009-04-17 22:20:44 +0000231 uint32_t __t = (v); \
232 memcpy((u32p), &__t, 4); \
233} while (0)
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000234#endif
235
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000236/* ---- Compiler dependent settings ------------------------- */
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000237
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200238#if (defined __digital__ && defined __unix__) \
Waldemar Brodkorb95b83ba2010-08-06 09:17:26 +0200239 || defined __APPLE__ || defined __FreeBSD__ || defined __OpenBSD__
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000240# undef HAVE_MNTENT_H
Mike Frysinger9412ec72008-02-07 22:41:33 +0000241# undef HAVE_SYS_STATFS_H
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000242#else
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000243# define HAVE_MNTENT_H 1
Mike Frysinger9412ec72008-02-07 22:41:33 +0000244# define HAVE_SYS_STATFS_H 1
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000245#endif
Bernhard Reutner-Fischerbe862092007-03-19 15:15:06 +0000246
Bernhard Reutner-Fischere2e56c72006-05-19 11:54:02 +0000247/*----- Kernel versioning ------------------------------------*/
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000248
Bernhard Reutner-Fischere2e56c72006-05-19 11:54:02 +0000249#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
Bernhard Reutner-Fischere2e56c72006-05-19 11:54:02 +0000250
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000251/* ---- Miscellaneous --------------------------------------- */
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000252
Mike Frysingerb16b5bb2006-06-06 06:00:20 +0000253#if defined(__GNU_LIBRARY__) && __GNU_LIBRARY__ < 5 && \
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000254 !defined(__dietlibc__) && \
255 !defined(_NEWLIB_VERSION) && \
256 !(defined __digital__ && defined __unix__)
Mike Frysingerb16b5bb2006-06-06 06:00:20 +0000257# error "Sorry, this libc version is not supported :("
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000258#endif
259
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000260/* Don't perpetuate e2fsck crap into the headers. Clean up e2fsck instead. */
Rob Landley18958e92006-06-13 18:28:33 +0000261
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000262#if defined __GLIBC__ || defined __UCLIBC__ \
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200263 || defined __dietlibc__ || defined _NEWLIB_VERSION
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200264# include <features.h>
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000265#endif
266
Bernhard Reutner-Fischerc966ba42007-01-18 10:32:09 +0000267/* Size-saving "small" ints (arch-dependent) */
268#if defined(i386) || defined(__x86_64__) || defined(__mips__) || defined(__cris__)
269/* add other arches which benefit from this... */
270typedef signed char smallint;
271typedef unsigned char smalluint;
272#else
273/* for arches where byte accesses generate larger code: */
274typedef int smallint;
275typedef unsigned smalluint;
276#endif
277
Bernhard Reutner-Fischera8e2e182007-01-20 21:27:18 +0000278/* ISO C Standard: 7.16 Boolean type and values <stdbool.h> */
279#if (defined __digital__ && defined __unix__)
280/* old system without (proper) C99 support */
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200281# define bool smalluint
Bernhard Reutner-Fischera8e2e182007-01-20 21:27:18 +0000282#else
283/* modern system, so use it */
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200284# include <stdbool.h>
Bernhard Reutner-Fischera8e2e182007-01-20 21:27:18 +0000285#endif
286
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000287/* Try to defeat gcc's alignment of "char message[]"-like data */
288#if 1 /* if needed: !defined(arch1) && !defined(arch2) */
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200289# define ALIGN1 __attribute__((aligned(1)))
290# define ALIGN2 __attribute__((aligned(2)))
Denys Vlasenko0ecc1162010-04-14 10:14:25 -0700291# define ALIGN4 __attribute__((aligned(4)))
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000292#else
293/* Arches which MUST have 2 or 4 byte alignment for everything are here */
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200294# define ALIGN1
295# define ALIGN2
Denys Vlasenko0ecc1162010-04-14 10:14:25 -0700296# define ALIGN4
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000297#endif
298
Bernhard Reutner-Fischera8e2e182007-01-20 21:27:18 +0000299
Mike Frysinger88407592006-07-20 19:31:07 +0000300/* uclibc does not implement daemon() for no-mmu systems.
Bernhard Reutner-Fischer507cd752006-05-31 10:04:03 +0000301 * For 0.9.29 and svn, __ARCH_USE_MMU__ indicates no-mmu reliably.
302 * For earlier versions there is no reliable way to check if we are building
Denis Vlasenko9e589212008-01-24 01:33:42 +0000303 * for a mmu-less system.
Bernhard Reutner-Fischer507cd752006-05-31 10:04:03 +0000304 */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +0000305#if ENABLE_NOMMU || \
306 (defined __UCLIBC__ && __UCLIBC_MAJOR__ >= 0 && __UCLIBC_MINOR__ >= 9 && \
307 __UCLIBC_SUBLEVEL__ > 28 && !defined __ARCH_USE_MMU__)
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200308# define BB_MMU 0
309# define USE_FOR_NOMMU(...) __VA_ARGS__
310# define USE_FOR_MMU(...)
Denis Vlasenko473dae02007-04-11 07:04:23 +0000311#else
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200312# define BB_MMU 1
313# define USE_FOR_NOMMU(...)
314# define USE_FOR_MMU(...) __VA_ARGS__
Bernhard Reutner-Fischer507cd752006-05-31 10:04:03 +0000315#endif
316
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200317/* Don't use lchown with glibc older than 2.1.x */
318#if defined(__GLIBC__) && __GLIBC__ <= 2 && __GLIBC_MINOR__ < 1
Mike Frysinger88407592006-07-20 19:31:07 +0000319# define lchown chown
320#endif
321
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200322#if defined(__digital__) && defined(__unix__)
Rob Landley8fba99f2006-05-27 22:08:01 +0000323
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000324# include <standards.h>
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000325# include <inttypes.h>
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000326# define PRIu32 "u"
Denis Vlasenko0de3c552007-04-12 12:31:02 +0000327/* use legacy setpgrp(pid_t,pid_t) for now. move to platform.c */
Denys Vlasenko245a4f82009-11-07 01:31:14 +0100328# define bb_setpgrp() do { pid_t __me = getpid(); setpgrp(__me, __me); } while (0)
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000329# if !defined ADJ_OFFSET_SINGLESHOT && defined MOD_CLKA && defined MOD_OFFSET
330# define ADJ_OFFSET_SINGLESHOT (MOD_CLKA | MOD_OFFSET)
331# endif
332# if !defined ADJ_FREQUENCY && defined MOD_FREQUENCY
333# define ADJ_FREQUENCY MOD_FREQUENCY
334# endif
335# if !defined ADJ_TIMECONST && defined MOD_TIMECONST
336# define ADJ_TIMECONST MOD_TIMECONST
337# endif
338# if !defined ADJ_TICK && defined MOD_CLKB
339# define ADJ_TICK MOD_CLKB
340# endif
Rob Landley8fba99f2006-05-27 22:08:01 +0000341
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200342#else
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000343
344# define bb_setpgrp() setpgrp()
345
Rob Landley18958e92006-06-13 18:28:33 +0000346#endif
347
Dan Fandrich21a542d2009-10-27 11:05:00 +0100348#if defined(__GLIBC__)
349# define fdprintf dprintf
350#endif
351
352#if defined(__dietlibc__)
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100353# undef HAVE_STRCHRNUL
Dan Fandrich21a542d2009-10-27 11:05:00 +0100354#endif
355
356#if defined(__WATCOMC__)
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100357# undef HAVE_FDPRINTF
358# undef HAVE_MEMRCHR
359# undef HAVE_MKDTEMP
360# undef HAVE_SETBIT
361# undef HAVE_STRCASESTR
362# undef HAVE_STRCHRNUL
Dan Fandrich0635ddd2010-06-18 22:36:45 -0700363# undef HAVE_STRSEP
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100364# undef HAVE_STRSIGNAL
365# undef HAVE_VASPRINTF
Dan Fandrich21a542d2009-10-27 11:05:00 +0100366#endif
367
368#if defined(__FreeBSD__)
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100369# undef HAVE_STRCHRNUL
Dan Fandrich21a542d2009-10-27 11:05:00 +0100370#endif
371
372/*
373 * Now, define prototypes for all the functions defined in platform.c
374 * These must come after all the HAVE_* macros are defined (or not)
375 */
376
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100377#ifndef HAVE_FDPRINTF
378extern int fdprintf(int fd, const char *format, ...);
379#endif
380
381#ifndef HAVE_MEMRCHR
382extern void *memrchr(const void *s, int c, size_t n) FAST_FUNC;
383#endif
384
385#ifndef HAVE_MKDTEMP
386extern char *mkdtemp(char *template) FAST_FUNC;
387#endif
388
389#ifndef HAVE_SETBIT
390# define setbit(a, b) ((a)[(b) >> 3] |= 1 << ((b) & 7))
391# define clrbit(a, b) ((a)[(b) >> 3] &= ~(1 << ((b) & 7)))
392#endif
393
394#ifndef HAVE_STRCASESTR
395extern char *strcasestr(const char *s, const char *pattern) FAST_FUNC;
396#endif
397
Dan Fandrich21a542d2009-10-27 11:05:00 +0100398#ifndef HAVE_STRCHRNUL
399extern char *strchrnul(const char *s, int c) FAST_FUNC;
400#endif
401
Dan Fandrich0635ddd2010-06-18 22:36:45 -0700402#ifndef HAVE_STRSEP
403extern char *strsep(char **stringp, const char *delim) FAST_FUNC;
404#endif
405
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100406#ifndef HAVE_STRSIGNAL
407/* Not exactly the same: instead of "Stopped" it shows "STOP" etc */
408# define strsignal(sig) get_signame(sig)
Dan Fandrich21a542d2009-10-27 11:05:00 +0100409#endif
410
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100411#ifndef HAVE_VASPRINTF
412extern int vasprintf(char **string_ptr, const char *format, va_list p) FAST_FUNC;
Dan Fandrich21a542d2009-10-27 11:05:00 +0100413#endif
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200414
Denis Vlasenkof81e8db2009-04-09 12:35:13 +0000415#endif