blob: 54bc27d5ba2300f174a8892b1d029cf8e6580b80 [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 Fandrichfe4e23f2009-11-01 04:01:30 +010019#define HAVE_STRSIGNAL 1
Dan Fandrich21a542d2009-10-27 11:05:00 +010020#define HAVE_VASPRINTF 1
21
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000022/* Convenience macros to test the version of gcc. */
23#undef __GNUC_PREREQ
24#if defined __GNUC__ && defined __GNUC_MINOR__
25# define __GNUC_PREREQ(maj, min) \
Denis Vlasenko9213a9e2006-09-17 16:28:10 +000026 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000027#else
28# define __GNUC_PREREQ(maj, min) 0
29#endif
30
31/* __restrict is known in EGCS 1.2 and above. */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000032#if !__GNUC_PREREQ(2,92)
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000033# ifndef __restrict
Denys Vlasenko5a49d282009-05-19 13:18:45 +020034# define __restrict
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000035# endif
36#endif
37
38/* Define macros for some gcc attributes. This permits us to use the
39 macros freely, and know that they will come into play for the
40 version of gcc in which they are supported. */
41
Denis Vlasenko98636eb2008-05-09 17:59:34 +000042#if !__GNUC_PREREQ(2,7)
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000043# ifndef __attribute__
44# define __attribute__(x)
45# endif
46#endif
47
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000048#undef inline
Denis Vlasenkoa7189f02006-11-17 20:29:00 +000049#if defined(__STDC_VERSION__) && __STDC_VERSION__ > 199901L
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000050/* it's a keyword */
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +020051#elif __GNUC_PREREQ(2,7)
52# define inline __inline__
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000053#else
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +020054# define inline
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000055#endif
56
57#ifndef __const
58# define __const const
59#endif
60
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000061#define UNUSED_PARAM __attribute__ ((__unused__))
62#define NORETURN __attribute__ ((__noreturn__))
Denys Vlasenko53283ad2009-11-02 14:20:34 +010063/* "The malloc attribute is used to tell the compiler that a function
64 * may be treated as if any non-NULL pointer it returns cannot alias
65 * any other pointer valid when the function returns. This will often
66 * improve optimization. Standard functions with this property include
67 * malloc and calloc. realloc-like functions have this property as long
68 * as the old pointer is never referred to (including comparing it
69 * to the new pointer) after the function returns a non-NULL value."
70 */
71#define RETURNS_MALLOC __attribute__ ((malloc))
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000072#define PACKED __attribute__ ((__packed__))
73#define ALIGNED(m) __attribute__ ((__aligned__(m)))
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +020074
Denis Vlasenko0f3a5802008-03-20 13:13:09 +000075/* __NO_INLINE__: some gcc's do not honor inlining! :( */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000076#if __GNUC_PREREQ(3,0) && !defined(__NO_INLINE__)
77# define ALWAYS_INLINE __attribute__ ((always_inline)) inline
Denis Vlasenko77f1ec12007-10-13 03:36:03 +000078/* I've seen a toolchain where I needed __noinline__ instead of noinline */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000079# define NOINLINE __attribute__((__noinline__))
80# if !ENABLE_WERROR
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000081# define DEPRECATED __attribute__ ((__deprecated__))
82# define UNUSED_PARAM_RESULT __attribute__ ((warn_unused_result))
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000083# else
Denys Vlasenko5a49d282009-05-19 13:18:45 +020084# define DEPRECATED
85# define UNUSED_PARAM_RESULT
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000086# endif
Denis Vlasenko98636eb2008-05-09 17:59:34 +000087#else
Denys Vlasenko5a49d282009-05-19 13:18:45 +020088# define ALWAYS_INLINE inline
89# define NOINLINE
90# define DEPRECATED
91# define UNUSED_PARAM_RESULT
Denis Vlasenko98636eb2008-05-09 17:59:34 +000092#endif
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000093
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000094/* -fwhole-program makes all symbols local. The attribute externally_visible
95 forces a symbol global. */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000096#if __GNUC_PREREQ(4,1)
97# define EXTERNALLY_VISIBLE __attribute__(( visibility("default") ))
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000098//__attribute__ ((__externally_visible__))
Denis Vlasenko98636eb2008-05-09 17:59:34 +000099#else
100# define EXTERNALLY_VISIBLE
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000101#endif
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +0000102
103/* We use __extension__ in some places to suppress -pedantic warnings
104 about GCC extensions. This feature didn't work properly before
105 gcc 2.8. */
Denis Vlasenko98636eb2008-05-09 17:59:34 +0000106#if !__GNUC_PREREQ(2,8)
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +0000107# ifndef __extension__
108# define __extension__
109# endif
110#endif
111
Bernhard Reutner-Fischerb5f50ea2006-09-12 13:27:55 +0000112/* gcc-2.95 had no va_copy but only __va_copy. */
Denis Vlasenko98636eb2008-05-09 17:59:34 +0000113#if !__GNUC_PREREQ(3,0)
Bernhard Reutner-Fischerb5f50ea2006-09-12 13:27:55 +0000114# include <stdarg.h>
115# if !defined va_copy && defined __va_copy
116# define va_copy(d,s) __va_copy((d),(s))
117# endif
118#endif
119
Denis Vlasenko42b8daf2008-06-27 03:55:18 +0000120/* FAST_FUNC is a qualifier which (possibly) makes function call faster
121 * and/or smaller by using modified ABI. It is usually only needed
122 * on non-static, busybox internal functions. Recent versions of gcc
123 * optimize statics automatically. FAST_FUNC on static is required
124 * only if you need to match a function pointer's type */
Denis Vlasenkoac2b50e2008-06-27 04:30:48 +0000125#if __GNUC_PREREQ(3,0) && defined(i386) /* || defined(__x86_64__)? */
126/* stdcall makes callee to pop arguments from stack, not caller */
127# define FAST_FUNC __attribute__((regparm(3),stdcall))
Denis Vlasenko42b8daf2008-06-27 03:55:18 +0000128/* #elif ... - add your favorite arch today! */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000129#else
130# define FAST_FUNC
131#endif
132
Denis Vlasenkof81e8db2009-04-09 12:35:13 +0000133/* Make all declarations hidden (-fvisibility flag only affects definitions) */
134/* (don't include system headers after this until corresponding pop!) */
135#if __GNUC_PREREQ(4,1)
136# define PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN _Pragma("GCC visibility push(hidden)")
137# define POP_SAVED_FUNCTION_VISIBILITY _Pragma("GCC visibility pop")
138#else
139# define PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
140# define POP_SAVED_FUNCTION_VISIBILITY
141#endif
142
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000143/* ---- Endian Detection ------------------------------------ */
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000144
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200145#if defined(__digital__) && defined(__unix__)
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000146# include <sex.h>
147# define __BIG_ENDIAN__ (BYTE_ORDER == BIG_ENDIAN)
148# define __BYTE_ORDER BYTE_ORDER
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200149#elif defined __FreeBSD__
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200150# include <sys/resource.h> /* rlimit */
151# include <machine/endian.h>
152# define bswap_64 __bswap64
153# define bswap_32 __bswap32
154# define bswap_16 __bswap16
155# define __BIG_ENDIAN__ (_BYTE_ORDER == _BIG_ENDIAN)
Rob Landley15d20a02006-05-29 05:00:44 +0000156#elif !defined __APPLE__
157# include <byteswap.h>
158# include <endian.h>
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000159#endif
160
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200161#if defined(__BIG_ENDIAN__) && __BIG_ENDIAN__
Mike Frysingerf8855132006-03-28 02:35:56 +0000162# define BB_BIG_ENDIAN 1
163# define BB_LITTLE_ENDIAN 0
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000164#elif __BYTE_ORDER == __BIG_ENDIAN
Mike Frysingerf8855132006-03-28 02:35:56 +0000165# define BB_BIG_ENDIAN 1
166# define BB_LITTLE_ENDIAN 0
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200167#elif __BYTE_ORDER == __LITTLE_ENDIAN
Mike Frysingerf8855132006-03-28 02:35:56 +0000168# define BB_BIG_ENDIAN 0
169# define BB_LITTLE_ENDIAN 1
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200170#else
Dan Fandrich21a542d2009-10-27 11:05:00 +0100171# error "Can't determine endianness"
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000172#endif
173
Denis Vlasenko9b0f6e12008-11-01 13:40:32 +0000174/* SWAP_LEnn means "convert CPU<->little_endian by swapping bytes" */
Rob Landleybba7f082006-05-29 05:51:12 +0000175#if BB_BIG_ENDIAN
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200176# define SWAP_BE16(x) (x)
177# define SWAP_BE32(x) (x)
178# define SWAP_BE64(x) (x)
179# define SWAP_LE16(x) bswap_16(x)
180# define SWAP_LE32(x) bswap_32(x)
181# define SWAP_LE64(x) bswap_64(x)
Rob Landleybba7f082006-05-29 05:51:12 +0000182#else
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200183# define SWAP_BE16(x) bswap_16(x)
184# define SWAP_BE32(x) bswap_32(x)
185# define SWAP_BE64(x) bswap_64(x)
186# define SWAP_LE16(x) (x)
187# define SWAP_LE32(x) (x)
188# define SWAP_LE64(x) (x)
Rob Landleybba7f082006-05-29 05:51:12 +0000189#endif
190
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000191/* ---- Unaligned access ------------------------------------ */
192
Denis Vlasenkoefb545b2008-12-08 22:56:18 +0000193/* NB: unaligned parameter should be a pointer, aligned one -
194 * a lvalue. This makes it more likely to not swap them by mistake
195 */
Denis Vlasenko42b8daf2008-06-27 03:55:18 +0000196#if defined(i386) || defined(__x86_64__)
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200197# define move_from_unaligned16(v, u16p) ((v) = *(uint16_t*)(u16p))
198# define move_from_unaligned32(v, u32p) ((v) = *(uint32_t*)(u32p))
199# define move_to_unaligned32(u32p, v) (*(uint32_t*)(u32p) = (v))
Denis Vlasenko42b8daf2008-06-27 03:55:18 +0000200/* #elif ... - add your favorite arch today! */
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000201#else
202/* performs reasonably well (gcc usually inlines memcpy here) */
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200203# define move_from_unaligned16(v, u16p) (memcpy(&(v), (u16p), 2))
204# define move_from_unaligned32(v, u32p) (memcpy(&(v), (u32p), 4))
205# define move_to_unaligned32(u32p, v) do { \
Denis Vlasenko3be23082009-04-17 22:20:44 +0000206 uint32_t __t = (v); \
207 memcpy((u32p), &__t, 4); \
208} while (0)
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000209#endif
210
Rob Landleydae6aa22006-03-09 22:39:08 +0000211/* ---- Networking ------------------------------------------ */
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000212
Rob Landleydae6aa22006-03-09 22:39:08 +0000213#ifndef __APPLE__
Mike Frysingerf8855132006-03-28 02:35:56 +0000214# include <arpa/inet.h>
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200215# if !defined(__socklen_t_defined) && !defined(_SOCKLEN_T_DECLARED)
Mike Frysinger9412ec72008-02-07 22:41:33 +0000216typedef int socklen_t;
217# endif
Rob Landleydae6aa22006-03-09 22:39:08 +0000218#else
Mike Frysingerf8855132006-03-28 02:35:56 +0000219# include <netinet/in.h>
Rob Landleydae6aa22006-03-09 22:39:08 +0000220#endif
221
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000222/* ---- Compiler dependent settings ------------------------- */
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000223
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200224#if (defined __digital__ && defined __unix__) \
225 || defined __APPLE__ || defined __FreeBSD__
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000226# undef HAVE_MNTENT_H
Mike Frysinger9412ec72008-02-07 22:41:33 +0000227# undef HAVE_SYS_STATFS_H
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000228#else
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000229# define HAVE_MNTENT_H 1
Mike Frysinger9412ec72008-02-07 22:41:33 +0000230# define HAVE_SYS_STATFS_H 1
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000231#endif
Bernhard Reutner-Fischerbe862092007-03-19 15:15:06 +0000232
Bernhard Reutner-Fischere2e56c72006-05-19 11:54:02 +0000233/*----- Kernel versioning ------------------------------------*/
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000234
Bernhard Reutner-Fischere2e56c72006-05-19 11:54:02 +0000235#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
Bernhard Reutner-Fischere2e56c72006-05-19 11:54:02 +0000236
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000237/* ---- Miscellaneous --------------------------------------- */
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000238
Mike Frysingerb16b5bb2006-06-06 06:00:20 +0000239#if defined(__GNU_LIBRARY__) && __GNU_LIBRARY__ < 5 && \
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000240 !defined(__dietlibc__) && \
241 !defined(_NEWLIB_VERSION) && \
242 !(defined __digital__ && defined __unix__)
Mike Frysingerb16b5bb2006-06-06 06:00:20 +0000243# error "Sorry, this libc version is not supported :("
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000244#endif
245
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000246/* Don't perpetuate e2fsck crap into the headers. Clean up e2fsck instead. */
Rob Landley18958e92006-06-13 18:28:33 +0000247
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000248#if defined __GLIBC__ || defined __UCLIBC__ \
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200249 || defined __dietlibc__ || defined _NEWLIB_VERSION
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200250# include <features.h>
251# define HAVE_FEATURES_H
252# include <stdint.h>
253# define HAVE_STDINT_H
Mike Frysinger9412ec72008-02-07 22:41:33 +0000254#elif !defined __APPLE__
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200255/* Largest integral types. */
256# if BB_BIG_ENDIAN
257/* Looks BROKEN! */
Denis Vlasenko87468852007-04-13 23:22:00 +0000258typedef long intmax_t;
259typedef unsigned long uintmax_t;
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200260# else
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000261__extension__
Denis Vlasenko87468852007-04-13 23:22:00 +0000262typedef long long intmax_t;
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000263__extension__
Denis Vlasenko87468852007-04-13 23:22:00 +0000264typedef unsigned long long uintmax_t;
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200265# endif
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000266#endif
267
Bernhard Reutner-Fischerc966ba42007-01-18 10:32:09 +0000268/* Size-saving "small" ints (arch-dependent) */
269#if defined(i386) || defined(__x86_64__) || defined(__mips__) || defined(__cris__)
270/* add other arches which benefit from this... */
271typedef signed char smallint;
272typedef unsigned char smalluint;
273#else
274/* for arches where byte accesses generate larger code: */
275typedef int smallint;
276typedef unsigned smalluint;
277#endif
278
Bernhard Reutner-Fischera8e2e182007-01-20 21:27:18 +0000279/* ISO C Standard: 7.16 Boolean type and values <stdbool.h> */
280#if (defined __digital__ && defined __unix__)
281/* old system without (proper) C99 support */
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200282# define bool smalluint
Bernhard Reutner-Fischera8e2e182007-01-20 21:27:18 +0000283#else
284/* modern system, so use it */
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200285# include <stdbool.h>
Bernhard Reutner-Fischera8e2e182007-01-20 21:27:18 +0000286#endif
287
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000288/* Try to defeat gcc's alignment of "char message[]"-like data */
289#if 1 /* if needed: !defined(arch1) && !defined(arch2) */
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200290# define ALIGN1 __attribute__((aligned(1)))
291# define ALIGN2 __attribute__((aligned(2)))
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
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000296#endif
297
Bernhard Reutner-Fischera8e2e182007-01-20 21:27:18 +0000298
Mike Frysinger88407592006-07-20 19:31:07 +0000299/* uclibc does not implement daemon() for no-mmu systems.
Bernhard Reutner-Fischer507cd752006-05-31 10:04:03 +0000300 * For 0.9.29 and svn, __ARCH_USE_MMU__ indicates no-mmu reliably.
301 * For earlier versions there is no reliable way to check if we are building
Denis Vlasenko9e589212008-01-24 01:33:42 +0000302 * for a mmu-less system.
Bernhard Reutner-Fischer507cd752006-05-31 10:04:03 +0000303 */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +0000304#if ENABLE_NOMMU || \
305 (defined __UCLIBC__ && __UCLIBC_MAJOR__ >= 0 && __UCLIBC_MINOR__ >= 9 && \
306 __UCLIBC_SUBLEVEL__ > 28 && !defined __ARCH_USE_MMU__)
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200307# define BB_MMU 0
308# define USE_FOR_NOMMU(...) __VA_ARGS__
309# define USE_FOR_MMU(...)
Denis Vlasenko473dae02007-04-11 07:04:23 +0000310#else
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200311# define BB_MMU 1
312# define USE_FOR_NOMMU(...)
313# define USE_FOR_MMU(...) __VA_ARGS__
Bernhard Reutner-Fischer507cd752006-05-31 10:04:03 +0000314#endif
315
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200316/* Don't use lchown with glibc older than 2.1.x */
317#if defined(__GLIBC__) && __GLIBC__ <= 2 && __GLIBC_MINOR__ < 1
Mike Frysinger88407592006-07-20 19:31:07 +0000318# define lchown chown
319#endif
320
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200321#if defined(__digital__) && defined(__unix__)
Rob Landley8fba99f2006-05-27 22:08:01 +0000322
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000323# include <standards.h>
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000324# include <inttypes.h>
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000325# define PRIu32 "u"
Denis Vlasenko0de3c552007-04-12 12:31:02 +0000326/* use legacy setpgrp(pid_t,pid_t) for now. move to platform.c */
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000327# define bb_setpgrp() do { pid_t __me = getpid(); setpgrp(__me,__me); } while (0)
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000328# if !defined ADJ_OFFSET_SINGLESHOT && defined MOD_CLKA && defined MOD_OFFSET
329# define ADJ_OFFSET_SINGLESHOT (MOD_CLKA | MOD_OFFSET)
330# endif
331# if !defined ADJ_FREQUENCY && defined MOD_FREQUENCY
332# define ADJ_FREQUENCY MOD_FREQUENCY
333# endif
334# if !defined ADJ_TIMECONST && defined MOD_TIMECONST
335# define ADJ_TIMECONST MOD_TIMECONST
336# endif
337# if !defined ADJ_TICK && defined MOD_CLKB
338# define ADJ_TICK MOD_CLKB
339# endif
Rob Landley8fba99f2006-05-27 22:08:01 +0000340
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200341#else
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000342
343# define bb_setpgrp() setpgrp()
344
Rob Landley18958e92006-06-13 18:28:33 +0000345#endif
346
Dan Fandrich21a542d2009-10-27 11:05:00 +0100347#if defined(__GLIBC__)
348# define fdprintf dprintf
349#endif
350
351#if defined(__dietlibc__)
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100352# undef HAVE_STRCHRNUL
Dan Fandrich21a542d2009-10-27 11:05:00 +0100353#endif
354
355#if defined(__WATCOMC__)
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100356# undef HAVE_FDPRINTF
357# undef HAVE_MEMRCHR
358# undef HAVE_MKDTEMP
359# undef HAVE_SETBIT
360# undef HAVE_STRCASESTR
361# undef HAVE_STRCHRNUL
362# undef HAVE_STRSIGNAL
363# undef HAVE_VASPRINTF
Dan Fandrich21a542d2009-10-27 11:05:00 +0100364#endif
365
366#if defined(__FreeBSD__)
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100367# undef HAVE_STRCHRNUL
Dan Fandrich21a542d2009-10-27 11:05:00 +0100368#endif
369
370/*
371 * Now, define prototypes for all the functions defined in platform.c
372 * These must come after all the HAVE_* macros are defined (or not)
373 */
374
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100375#ifndef HAVE_FDPRINTF
376extern int fdprintf(int fd, const char *format, ...);
377#endif
378
379#ifndef HAVE_MEMRCHR
380extern void *memrchr(const void *s, int c, size_t n) FAST_FUNC;
381#endif
382
383#ifndef HAVE_MKDTEMP
384extern char *mkdtemp(char *template) FAST_FUNC;
385#endif
386
387#ifndef HAVE_SETBIT
388# define setbit(a, b) ((a)[(b) >> 3] |= 1 << ((b) & 7))
389# define clrbit(a, b) ((a)[(b) >> 3] &= ~(1 << ((b) & 7)))
390#endif
391
392#ifndef HAVE_STRCASESTR
393extern char *strcasestr(const char *s, const char *pattern) FAST_FUNC;
394#endif
395
Dan Fandrich21a542d2009-10-27 11:05:00 +0100396#ifndef HAVE_STRCHRNUL
397extern char *strchrnul(const char *s, int c) FAST_FUNC;
398#endif
399
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100400#ifndef HAVE_STRSIGNAL
401/* Not exactly the same: instead of "Stopped" it shows "STOP" etc */
402# define strsignal(sig) get_signame(sig)
Dan Fandrich21a542d2009-10-27 11:05:00 +0100403#endif
404
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100405#ifndef HAVE_VASPRINTF
406extern int vasprintf(char **string_ptr, const char *format, va_list p) FAST_FUNC;
Dan Fandrich21a542d2009-10-27 11:05:00 +0100407#endif
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200408
Denis Vlasenkof81e8db2009-04-09 12:35:13 +0000409#endif