blob: 67b04f8cb54ce4f5abd3663a236ede7a51e51333 [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__))
63#define PACKED __attribute__ ((__packed__))
64#define ALIGNED(m) __attribute__ ((__aligned__(m)))
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +020065
Denis Vlasenko0f3a5802008-03-20 13:13:09 +000066/* __NO_INLINE__: some gcc's do not honor inlining! :( */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000067#if __GNUC_PREREQ(3,0) && !defined(__NO_INLINE__)
68# define ALWAYS_INLINE __attribute__ ((always_inline)) inline
Denis Vlasenko77f1ec12007-10-13 03:36:03 +000069/* I've seen a toolchain where I needed __noinline__ instead of noinline */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000070# define NOINLINE __attribute__((__noinline__))
71# if !ENABLE_WERROR
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000072# define DEPRECATED __attribute__ ((__deprecated__))
73# define UNUSED_PARAM_RESULT __attribute__ ((warn_unused_result))
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000074# else
Denys Vlasenko5a49d282009-05-19 13:18:45 +020075# define DEPRECATED
76# define UNUSED_PARAM_RESULT
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000077# endif
Denis Vlasenko98636eb2008-05-09 17:59:34 +000078#else
Denys Vlasenko5a49d282009-05-19 13:18:45 +020079# define ALWAYS_INLINE inline
80# define NOINLINE
81# define DEPRECATED
82# define UNUSED_PARAM_RESULT
Denis Vlasenko98636eb2008-05-09 17:59:34 +000083#endif
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000084
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000085/* -fwhole-program makes all symbols local. The attribute externally_visible
86 forces a symbol global. */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000087#if __GNUC_PREREQ(4,1)
88# define EXTERNALLY_VISIBLE __attribute__(( visibility("default") ))
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000089//__attribute__ ((__externally_visible__))
Denis Vlasenko98636eb2008-05-09 17:59:34 +000090#else
91# define EXTERNALLY_VISIBLE
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +000092#endif
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000093
94/* We use __extension__ in some places to suppress -pedantic warnings
95 about GCC extensions. This feature didn't work properly before
96 gcc 2.8. */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000097#if !__GNUC_PREREQ(2,8)
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000098# ifndef __extension__
99# define __extension__
100# endif
101#endif
102
Bernhard Reutner-Fischerb5f50ea2006-09-12 13:27:55 +0000103/* gcc-2.95 had no va_copy but only __va_copy. */
Denis Vlasenko98636eb2008-05-09 17:59:34 +0000104#if !__GNUC_PREREQ(3,0)
Bernhard Reutner-Fischerb5f50ea2006-09-12 13:27:55 +0000105# include <stdarg.h>
106# if !defined va_copy && defined __va_copy
107# define va_copy(d,s) __va_copy((d),(s))
108# endif
109#endif
110
Denis Vlasenko42b8daf2008-06-27 03:55:18 +0000111/* FAST_FUNC is a qualifier which (possibly) makes function call faster
112 * and/or smaller by using modified ABI. It is usually only needed
113 * on non-static, busybox internal functions. Recent versions of gcc
114 * optimize statics automatically. FAST_FUNC on static is required
115 * only if you need to match a function pointer's type */
Denis Vlasenkoac2b50e2008-06-27 04:30:48 +0000116#if __GNUC_PREREQ(3,0) && defined(i386) /* || defined(__x86_64__)? */
117/* stdcall makes callee to pop arguments from stack, not caller */
118# define FAST_FUNC __attribute__((regparm(3),stdcall))
Denis Vlasenko42b8daf2008-06-27 03:55:18 +0000119/* #elif ... - add your favorite arch today! */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000120#else
121# define FAST_FUNC
122#endif
123
Denis Vlasenkof81e8db2009-04-09 12:35:13 +0000124/* Make all declarations hidden (-fvisibility flag only affects definitions) */
125/* (don't include system headers after this until corresponding pop!) */
126#if __GNUC_PREREQ(4,1)
127# define PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN _Pragma("GCC visibility push(hidden)")
128# define POP_SAVED_FUNCTION_VISIBILITY _Pragma("GCC visibility pop")
129#else
130# define PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
131# define POP_SAVED_FUNCTION_VISIBILITY
132#endif
133
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000134/* ---- Endian Detection ------------------------------------ */
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000135
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200136#if defined(__digital__) && defined(__unix__)
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000137# include <sex.h>
138# define __BIG_ENDIAN__ (BYTE_ORDER == BIG_ENDIAN)
139# define __BYTE_ORDER BYTE_ORDER
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200140#elif defined __FreeBSD__
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200141# include <sys/resource.h> /* rlimit */
142# include <machine/endian.h>
143# define bswap_64 __bswap64
144# define bswap_32 __bswap32
145# define bswap_16 __bswap16
146# define __BIG_ENDIAN__ (_BYTE_ORDER == _BIG_ENDIAN)
Rob Landley15d20a02006-05-29 05:00:44 +0000147#elif !defined __APPLE__
148# include <byteswap.h>
149# include <endian.h>
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000150#endif
151
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200152#if defined(__BIG_ENDIAN__) && __BIG_ENDIAN__
Mike Frysingerf8855132006-03-28 02:35:56 +0000153# define BB_BIG_ENDIAN 1
154# define BB_LITTLE_ENDIAN 0
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000155#elif __BYTE_ORDER == __BIG_ENDIAN
Mike Frysingerf8855132006-03-28 02:35:56 +0000156# define BB_BIG_ENDIAN 1
157# define BB_LITTLE_ENDIAN 0
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200158#elif __BYTE_ORDER == __LITTLE_ENDIAN
Mike Frysingerf8855132006-03-28 02:35:56 +0000159# define BB_BIG_ENDIAN 0
160# define BB_LITTLE_ENDIAN 1
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200161#else
Dan Fandrich21a542d2009-10-27 11:05:00 +0100162# error "Can't determine endianness"
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000163#endif
164
Denis Vlasenko9b0f6e12008-11-01 13:40:32 +0000165/* SWAP_LEnn means "convert CPU<->little_endian by swapping bytes" */
Rob Landleybba7f082006-05-29 05:51:12 +0000166#if BB_BIG_ENDIAN
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200167# define SWAP_BE16(x) (x)
168# define SWAP_BE32(x) (x)
169# define SWAP_BE64(x) (x)
170# define SWAP_LE16(x) bswap_16(x)
171# define SWAP_LE32(x) bswap_32(x)
172# define SWAP_LE64(x) bswap_64(x)
Rob Landleybba7f082006-05-29 05:51:12 +0000173#else
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200174# define SWAP_BE16(x) bswap_16(x)
175# define SWAP_BE32(x) bswap_32(x)
176# define SWAP_BE64(x) bswap_64(x)
177# define SWAP_LE16(x) (x)
178# define SWAP_LE32(x) (x)
179# define SWAP_LE64(x) (x)
Rob Landleybba7f082006-05-29 05:51:12 +0000180#endif
181
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000182/* ---- Unaligned access ------------------------------------ */
183
Denis Vlasenkoefb545b2008-12-08 22:56:18 +0000184/* NB: unaligned parameter should be a pointer, aligned one -
185 * a lvalue. This makes it more likely to not swap them by mistake
186 */
Denis Vlasenko42b8daf2008-06-27 03:55:18 +0000187#if defined(i386) || defined(__x86_64__)
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200188# define move_from_unaligned16(v, u16p) ((v) = *(uint16_t*)(u16p))
189# define move_from_unaligned32(v, u32p) ((v) = *(uint32_t*)(u32p))
190# define move_to_unaligned32(u32p, v) (*(uint32_t*)(u32p) = (v))
Denis Vlasenko42b8daf2008-06-27 03:55:18 +0000191/* #elif ... - add your favorite arch today! */
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000192#else
193/* performs reasonably well (gcc usually inlines memcpy here) */
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200194# define move_from_unaligned16(v, u16p) (memcpy(&(v), (u16p), 2))
195# define move_from_unaligned32(v, u32p) (memcpy(&(v), (u32p), 4))
196# define move_to_unaligned32(u32p, v) do { \
Denis Vlasenko3be23082009-04-17 22:20:44 +0000197 uint32_t __t = (v); \
198 memcpy((u32p), &__t, 4); \
199} while (0)
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000200#endif
201
Rob Landleydae6aa22006-03-09 22:39:08 +0000202/* ---- Networking ------------------------------------------ */
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000203
Rob Landleydae6aa22006-03-09 22:39:08 +0000204#ifndef __APPLE__
Mike Frysingerf8855132006-03-28 02:35:56 +0000205# include <arpa/inet.h>
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200206# if !defined(__socklen_t_defined) && !defined(_SOCKLEN_T_DECLARED)
Mike Frysinger9412ec72008-02-07 22:41:33 +0000207typedef int socklen_t;
208# endif
Rob Landleydae6aa22006-03-09 22:39:08 +0000209#else
Mike Frysingerf8855132006-03-28 02:35:56 +0000210# include <netinet/in.h>
Rob Landleydae6aa22006-03-09 22:39:08 +0000211#endif
212
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000213/* ---- Compiler dependent settings ------------------------- */
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000214
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200215#if (defined __digital__ && defined __unix__) \
216 || defined __APPLE__ || defined __FreeBSD__
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000217# undef HAVE_MNTENT_H
Mike Frysinger9412ec72008-02-07 22:41:33 +0000218# undef HAVE_SYS_STATFS_H
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000219#else
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000220# define HAVE_MNTENT_H 1
Mike Frysinger9412ec72008-02-07 22:41:33 +0000221# define HAVE_SYS_STATFS_H 1
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000222#endif
Bernhard Reutner-Fischerbe862092007-03-19 15:15:06 +0000223
Bernhard Reutner-Fischere2e56c72006-05-19 11:54:02 +0000224/*----- Kernel versioning ------------------------------------*/
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000225
Bernhard Reutner-Fischere2e56c72006-05-19 11:54:02 +0000226#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
Bernhard Reutner-Fischere2e56c72006-05-19 11:54:02 +0000227
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000228/* ---- Miscellaneous --------------------------------------- */
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000229
Mike Frysingerb16b5bb2006-06-06 06:00:20 +0000230#if defined(__GNU_LIBRARY__) && __GNU_LIBRARY__ < 5 && \
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000231 !defined(__dietlibc__) && \
232 !defined(_NEWLIB_VERSION) && \
233 !(defined __digital__ && defined __unix__)
Mike Frysingerb16b5bb2006-06-06 06:00:20 +0000234# error "Sorry, this libc version is not supported :("
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000235#endif
236
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000237/* Don't perpetuate e2fsck crap into the headers. Clean up e2fsck instead. */
Rob Landley18958e92006-06-13 18:28:33 +0000238
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000239#if defined __GLIBC__ || defined __UCLIBC__ \
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200240 || defined __dietlibc__ || defined _NEWLIB_VERSION
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200241# include <features.h>
242# define HAVE_FEATURES_H
243# include <stdint.h>
244# define HAVE_STDINT_H
Mike Frysinger9412ec72008-02-07 22:41:33 +0000245#elif !defined __APPLE__
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200246/* Largest integral types. */
247# if BB_BIG_ENDIAN
248/* Looks BROKEN! */
Denis Vlasenko87468852007-04-13 23:22:00 +0000249typedef long intmax_t;
250typedef unsigned long uintmax_t;
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200251# else
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000252__extension__
Denis Vlasenko87468852007-04-13 23:22:00 +0000253typedef long long intmax_t;
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000254__extension__
Denis Vlasenko87468852007-04-13 23:22:00 +0000255typedef unsigned long long uintmax_t;
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200256# endif
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000257#endif
258
Bernhard Reutner-Fischerc966ba42007-01-18 10:32:09 +0000259/* Size-saving "small" ints (arch-dependent) */
260#if defined(i386) || defined(__x86_64__) || defined(__mips__) || defined(__cris__)
261/* add other arches which benefit from this... */
262typedef signed char smallint;
263typedef unsigned char smalluint;
264#else
265/* for arches where byte accesses generate larger code: */
266typedef int smallint;
267typedef unsigned smalluint;
268#endif
269
Bernhard Reutner-Fischera8e2e182007-01-20 21:27:18 +0000270/* ISO C Standard: 7.16 Boolean type and values <stdbool.h> */
271#if (defined __digital__ && defined __unix__)
272/* old system without (proper) C99 support */
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200273# define bool smalluint
Bernhard Reutner-Fischera8e2e182007-01-20 21:27:18 +0000274#else
275/* modern system, so use it */
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200276# include <stdbool.h>
Bernhard Reutner-Fischera8e2e182007-01-20 21:27:18 +0000277#endif
278
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000279/* Try to defeat gcc's alignment of "char message[]"-like data */
280#if 1 /* if needed: !defined(arch1) && !defined(arch2) */
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200281# define ALIGN1 __attribute__((aligned(1)))
282# define ALIGN2 __attribute__((aligned(2)))
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000283#else
284/* Arches which MUST have 2 or 4 byte alignment for everything are here */
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200285# define ALIGN1
286# define ALIGN2
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000287#endif
288
Bernhard Reutner-Fischera8e2e182007-01-20 21:27:18 +0000289
Mike Frysinger88407592006-07-20 19:31:07 +0000290/* uclibc does not implement daemon() for no-mmu systems.
Bernhard Reutner-Fischer507cd752006-05-31 10:04:03 +0000291 * For 0.9.29 and svn, __ARCH_USE_MMU__ indicates no-mmu reliably.
292 * For earlier versions there is no reliable way to check if we are building
Denis Vlasenko9e589212008-01-24 01:33:42 +0000293 * for a mmu-less system.
Bernhard Reutner-Fischer507cd752006-05-31 10:04:03 +0000294 */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +0000295#if ENABLE_NOMMU || \
296 (defined __UCLIBC__ && __UCLIBC_MAJOR__ >= 0 && __UCLIBC_MINOR__ >= 9 && \
297 __UCLIBC_SUBLEVEL__ > 28 && !defined __ARCH_USE_MMU__)
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200298# define BB_MMU 0
299# define USE_FOR_NOMMU(...) __VA_ARGS__
300# define USE_FOR_MMU(...)
Denis Vlasenko473dae02007-04-11 07:04:23 +0000301#else
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200302# define BB_MMU 1
303# define USE_FOR_NOMMU(...)
304# define USE_FOR_MMU(...) __VA_ARGS__
Bernhard Reutner-Fischer507cd752006-05-31 10:04:03 +0000305#endif
306
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200307/* Don't use lchown with glibc older than 2.1.x */
308#if defined(__GLIBC__) && __GLIBC__ <= 2 && __GLIBC_MINOR__ < 1
Mike Frysinger88407592006-07-20 19:31:07 +0000309# define lchown chown
310#endif
311
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200312#if defined(__digital__) && defined(__unix__)
Rob Landley8fba99f2006-05-27 22:08:01 +0000313
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000314# include <standards.h>
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000315# include <inttypes.h>
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000316# define PRIu32 "u"
Denis Vlasenko0de3c552007-04-12 12:31:02 +0000317/* use legacy setpgrp(pid_t,pid_t) for now. move to platform.c */
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000318# define bb_setpgrp() do { pid_t __me = getpid(); setpgrp(__me,__me); } while (0)
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000319# if !defined ADJ_OFFSET_SINGLESHOT && defined MOD_CLKA && defined MOD_OFFSET
320# define ADJ_OFFSET_SINGLESHOT (MOD_CLKA | MOD_OFFSET)
321# endif
322# if !defined ADJ_FREQUENCY && defined MOD_FREQUENCY
323# define ADJ_FREQUENCY MOD_FREQUENCY
324# endif
325# if !defined ADJ_TIMECONST && defined MOD_TIMECONST
326# define ADJ_TIMECONST MOD_TIMECONST
327# endif
328# if !defined ADJ_TICK && defined MOD_CLKB
329# define ADJ_TICK MOD_CLKB
330# endif
Rob Landley8fba99f2006-05-27 22:08:01 +0000331
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200332#else
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000333
334# define bb_setpgrp() setpgrp()
335
Rob Landley18958e92006-06-13 18:28:33 +0000336#endif
337
Dan Fandrich21a542d2009-10-27 11:05:00 +0100338#if defined(__GLIBC__)
339# define fdprintf dprintf
340#endif
341
342#if defined(__dietlibc__)
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100343# undef HAVE_STRCHRNUL
Dan Fandrich21a542d2009-10-27 11:05:00 +0100344#endif
345
346#if defined(__WATCOMC__)
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100347# undef HAVE_FDPRINTF
348# undef HAVE_MEMRCHR
349# undef HAVE_MKDTEMP
350# undef HAVE_SETBIT
351# undef HAVE_STRCASESTR
352# undef HAVE_STRCHRNUL
353# undef HAVE_STRSIGNAL
354# undef HAVE_VASPRINTF
Dan Fandrich21a542d2009-10-27 11:05:00 +0100355#endif
356
357#if defined(__FreeBSD__)
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100358# undef HAVE_STRCHRNUL
Dan Fandrich21a542d2009-10-27 11:05:00 +0100359#endif
360
361/*
362 * Now, define prototypes for all the functions defined in platform.c
363 * These must come after all the HAVE_* macros are defined (or not)
364 */
365
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100366#ifndef HAVE_FDPRINTF
367extern int fdprintf(int fd, const char *format, ...);
368#endif
369
370#ifndef HAVE_MEMRCHR
371extern void *memrchr(const void *s, int c, size_t n) FAST_FUNC;
372#endif
373
374#ifndef HAVE_MKDTEMP
375extern char *mkdtemp(char *template) FAST_FUNC;
376#endif
377
378#ifndef HAVE_SETBIT
379# define setbit(a, b) ((a)[(b) >> 3] |= 1 << ((b) & 7))
380# define clrbit(a, b) ((a)[(b) >> 3] &= ~(1 << ((b) & 7)))
381#endif
382
383#ifndef HAVE_STRCASESTR
384extern char *strcasestr(const char *s, const char *pattern) FAST_FUNC;
385#endif
386
Dan Fandrich21a542d2009-10-27 11:05:00 +0100387#ifndef HAVE_STRCHRNUL
388extern char *strchrnul(const char *s, int c) FAST_FUNC;
389#endif
390
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100391#ifndef HAVE_STRSIGNAL
392/* Not exactly the same: instead of "Stopped" it shows "STOP" etc */
393# define strsignal(sig) get_signame(sig)
Dan Fandrich21a542d2009-10-27 11:05:00 +0100394#endif
395
Dan Fandrichfe4e23f2009-11-01 04:01:30 +0100396#ifndef HAVE_VASPRINTF
397extern int vasprintf(char **string_ptr, const char *format, va_list p) FAST_FUNC;
Dan Fandrich21a542d2009-10-27 11:05:00 +0100398#endif
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200399
Denis Vlasenkof81e8db2009-04-09 12:35:13 +0000400#endif