blob: 1fa2ece2b3ce8b307faebad0f52a6b35c68fc6a1 [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
14#define HAVE_STRCHRNUL 1
15#define HAVE_VASPRINTF 1
16
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000017/* Convenience macros to test the version of gcc. */
18#undef __GNUC_PREREQ
19#if defined __GNUC__ && defined __GNUC_MINOR__
20# define __GNUC_PREREQ(maj, min) \
Denis Vlasenko9213a9e2006-09-17 16:28:10 +000021 ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000022#else
23# define __GNUC_PREREQ(maj, min) 0
24#endif
25
26/* __restrict is known in EGCS 1.2 and above. */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000027#if !__GNUC_PREREQ(2,92)
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000028# ifndef __restrict
Denys Vlasenko5a49d282009-05-19 13:18:45 +020029# define __restrict
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000030# endif
31#endif
32
33/* Define macros for some gcc attributes. This permits us to use the
34 macros freely, and know that they will come into play for the
35 version of gcc in which they are supported. */
36
Denis Vlasenko98636eb2008-05-09 17:59:34 +000037#if !__GNUC_PREREQ(2,7)
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000038# ifndef __attribute__
39# define __attribute__(x)
40# endif
41#endif
42
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000043#undef inline
Denis Vlasenkoa7189f02006-11-17 20:29:00 +000044#if defined(__STDC_VERSION__) && __STDC_VERSION__ > 199901L
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000045/* it's a keyword */
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +020046#elif __GNUC_PREREQ(2,7)
47# define inline __inline__
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000048#else
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +020049# define inline
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000050#endif
51
52#ifndef __const
53# define __const const
54#endif
55
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000056#define UNUSED_PARAM __attribute__ ((__unused__))
57#define NORETURN __attribute__ ((__noreturn__))
58#define PACKED __attribute__ ((__packed__))
59#define ALIGNED(m) __attribute__ ((__aligned__(m)))
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +020060
Denis Vlasenko0f3a5802008-03-20 13:13:09 +000061/* __NO_INLINE__: some gcc's do not honor inlining! :( */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000062#if __GNUC_PREREQ(3,0) && !defined(__NO_INLINE__)
63# define ALWAYS_INLINE __attribute__ ((always_inline)) inline
Denis Vlasenko77f1ec12007-10-13 03:36:03 +000064/* I've seen a toolchain where I needed __noinline__ instead of noinline */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000065# define NOINLINE __attribute__((__noinline__))
66# if !ENABLE_WERROR
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000067# define DEPRECATED __attribute__ ((__deprecated__))
68# define UNUSED_PARAM_RESULT __attribute__ ((warn_unused_result))
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000069# else
Denys Vlasenko5a49d282009-05-19 13:18:45 +020070# define DEPRECATED
71# define UNUSED_PARAM_RESULT
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000072# endif
Denis Vlasenko98636eb2008-05-09 17:59:34 +000073#else
Denys Vlasenko5a49d282009-05-19 13:18:45 +020074# define ALWAYS_INLINE inline
75# define NOINLINE
76# define DEPRECATED
77# define UNUSED_PARAM_RESULT
Denis Vlasenko98636eb2008-05-09 17:59:34 +000078#endif
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +000079
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000080/* -fwhole-program makes all symbols local. The attribute externally_visible
81 forces a symbol global. */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000082#if __GNUC_PREREQ(4,1)
83# define EXTERNALLY_VISIBLE __attribute__(( visibility("default") ))
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000084//__attribute__ ((__externally_visible__))
Denis Vlasenko98636eb2008-05-09 17:59:34 +000085#else
86# define EXTERNALLY_VISIBLE
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +000087#endif
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000088
89/* We use __extension__ in some places to suppress -pedantic warnings
90 about GCC extensions. This feature didn't work properly before
91 gcc 2.8. */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000092#if !__GNUC_PREREQ(2,8)
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000093# ifndef __extension__
94# define __extension__
95# endif
96#endif
97
Bernhard Reutner-Fischerb5f50ea2006-09-12 13:27:55 +000098/* gcc-2.95 had no va_copy but only __va_copy. */
Denis Vlasenko98636eb2008-05-09 17:59:34 +000099#if !__GNUC_PREREQ(3,0)
Bernhard Reutner-Fischerb5f50ea2006-09-12 13:27:55 +0000100# include <stdarg.h>
101# if !defined va_copy && defined __va_copy
102# define va_copy(d,s) __va_copy((d),(s))
103# endif
104#endif
105
Denis Vlasenko42b8daf2008-06-27 03:55:18 +0000106/* FAST_FUNC is a qualifier which (possibly) makes function call faster
107 * and/or smaller by using modified ABI. It is usually only needed
108 * on non-static, busybox internal functions. Recent versions of gcc
109 * optimize statics automatically. FAST_FUNC on static is required
110 * only if you need to match a function pointer's type */
Denis Vlasenkoac2b50e2008-06-27 04:30:48 +0000111#if __GNUC_PREREQ(3,0) && defined(i386) /* || defined(__x86_64__)? */
112/* stdcall makes callee to pop arguments from stack, not caller */
113# define FAST_FUNC __attribute__((regparm(3),stdcall))
Denis Vlasenko42b8daf2008-06-27 03:55:18 +0000114/* #elif ... - add your favorite arch today! */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000115#else
116# define FAST_FUNC
117#endif
118
Denis Vlasenkof81e8db2009-04-09 12:35:13 +0000119/* Make all declarations hidden (-fvisibility flag only affects definitions) */
120/* (don't include system headers after this until corresponding pop!) */
121#if __GNUC_PREREQ(4,1)
122# define PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN _Pragma("GCC visibility push(hidden)")
123# define POP_SAVED_FUNCTION_VISIBILITY _Pragma("GCC visibility pop")
124#else
125# define PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
126# define POP_SAVED_FUNCTION_VISIBILITY
127#endif
128
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000129/* ---- Endian Detection ------------------------------------ */
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000130
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200131#if defined(__digital__) && defined(__unix__)
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000132# include <sex.h>
133# define __BIG_ENDIAN__ (BYTE_ORDER == BIG_ENDIAN)
134# define __BYTE_ORDER BYTE_ORDER
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200135#elif defined __FreeBSD__
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200136# include <sys/resource.h> /* rlimit */
137# include <machine/endian.h>
138# define bswap_64 __bswap64
139# define bswap_32 __bswap32
140# define bswap_16 __bswap16
141# define __BIG_ENDIAN__ (_BYTE_ORDER == _BIG_ENDIAN)
Rob Landley15d20a02006-05-29 05:00:44 +0000142#elif !defined __APPLE__
143# include <byteswap.h>
144# include <endian.h>
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000145#endif
146
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200147#if defined(__BIG_ENDIAN__) && __BIG_ENDIAN__
Mike Frysingerf8855132006-03-28 02:35:56 +0000148# define BB_BIG_ENDIAN 1
149# define BB_LITTLE_ENDIAN 0
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000150#elif __BYTE_ORDER == __BIG_ENDIAN
Mike Frysingerf8855132006-03-28 02:35:56 +0000151# define BB_BIG_ENDIAN 1
152# define BB_LITTLE_ENDIAN 0
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200153#elif __BYTE_ORDER == __LITTLE_ENDIAN
Mike Frysingerf8855132006-03-28 02:35:56 +0000154# define BB_BIG_ENDIAN 0
155# define BB_LITTLE_ENDIAN 1
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200156#else
Dan Fandrich21a542d2009-10-27 11:05:00 +0100157# error "Can't determine endianness"
Rob Landley5cf7c2d2006-02-21 06:44:43 +0000158#endif
159
Denis Vlasenko9b0f6e12008-11-01 13:40:32 +0000160/* SWAP_LEnn means "convert CPU<->little_endian by swapping bytes" */
Rob Landleybba7f082006-05-29 05:51:12 +0000161#if BB_BIG_ENDIAN
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200162# define SWAP_BE16(x) (x)
163# define SWAP_BE32(x) (x)
164# define SWAP_BE64(x) (x)
165# define SWAP_LE16(x) bswap_16(x)
166# define SWAP_LE32(x) bswap_32(x)
167# define SWAP_LE64(x) bswap_64(x)
Rob Landleybba7f082006-05-29 05:51:12 +0000168#else
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200169# define SWAP_BE16(x) bswap_16(x)
170# define SWAP_BE32(x) bswap_32(x)
171# define SWAP_BE64(x) bswap_64(x)
172# define SWAP_LE16(x) (x)
173# define SWAP_LE32(x) (x)
174# define SWAP_LE64(x) (x)
Rob Landleybba7f082006-05-29 05:51:12 +0000175#endif
176
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000177/* ---- Unaligned access ------------------------------------ */
178
Denis Vlasenkoefb545b2008-12-08 22:56:18 +0000179/* NB: unaligned parameter should be a pointer, aligned one -
180 * a lvalue. This makes it more likely to not swap them by mistake
181 */
Denis Vlasenko42b8daf2008-06-27 03:55:18 +0000182#if defined(i386) || defined(__x86_64__)
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200183# define move_from_unaligned16(v, u16p) ((v) = *(uint16_t*)(u16p))
184# define move_from_unaligned32(v, u32p) ((v) = *(uint32_t*)(u32p))
185# define move_to_unaligned32(u32p, v) (*(uint32_t*)(u32p) = (v))
Denis Vlasenko42b8daf2008-06-27 03:55:18 +0000186/* #elif ... - add your favorite arch today! */
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000187#else
188/* performs reasonably well (gcc usually inlines memcpy here) */
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200189# define move_from_unaligned16(v, u16p) (memcpy(&(v), (u16p), 2))
190# define move_from_unaligned32(v, u32p) (memcpy(&(v), (u32p), 4))
191# define move_to_unaligned32(u32p, v) do { \
Denis Vlasenko3be23082009-04-17 22:20:44 +0000192 uint32_t __t = (v); \
193 memcpy((u32p), &__t, 4); \
194} while (0)
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000195#endif
196
Rob Landleydae6aa22006-03-09 22:39:08 +0000197/* ---- Networking ------------------------------------------ */
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000198
Rob Landleydae6aa22006-03-09 22:39:08 +0000199#ifndef __APPLE__
Mike Frysingerf8855132006-03-28 02:35:56 +0000200# include <arpa/inet.h>
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200201# if !defined(__socklen_t_defined) && !defined(_SOCKLEN_T_DECLARED)
Mike Frysinger9412ec72008-02-07 22:41:33 +0000202typedef int socklen_t;
203# endif
Rob Landleydae6aa22006-03-09 22:39:08 +0000204#else
Mike Frysingerf8855132006-03-28 02:35:56 +0000205# include <netinet/in.h>
Rob Landleydae6aa22006-03-09 22:39:08 +0000206#endif
207
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000208/* ---- Compiler dependent settings ------------------------- */
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000209
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200210#if (defined __digital__ && defined __unix__) \
211 || defined __APPLE__ || defined __FreeBSD__
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000212# undef HAVE_MNTENT_H
Mike Frysinger9412ec72008-02-07 22:41:33 +0000213# undef HAVE_SYS_STATFS_H
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000214#else
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000215# define HAVE_MNTENT_H 1
Mike Frysinger9412ec72008-02-07 22:41:33 +0000216# define HAVE_SYS_STATFS_H 1
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000217#endif
Bernhard Reutner-Fischerbe862092007-03-19 15:15:06 +0000218
Bernhard Reutner-Fischere2e56c72006-05-19 11:54:02 +0000219/*----- Kernel versioning ------------------------------------*/
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000220
Bernhard Reutner-Fischere2e56c72006-05-19 11:54:02 +0000221#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
Bernhard Reutner-Fischere2e56c72006-05-19 11:54:02 +0000222
Denis Vlasenkofc9e1082008-05-26 17:32:35 +0000223/* ---- Miscellaneous --------------------------------------- */
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000224
Mike Frysingerb16b5bb2006-06-06 06:00:20 +0000225#if defined(__GNU_LIBRARY__) && __GNU_LIBRARY__ < 5 && \
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000226 !defined(__dietlibc__) && \
227 !defined(_NEWLIB_VERSION) && \
228 !(defined __digital__ && defined __unix__)
Mike Frysingerb16b5bb2006-06-06 06:00:20 +0000229# error "Sorry, this libc version is not supported :("
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000230#endif
231
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000232/* Don't perpetuate e2fsck crap into the headers. Clean up e2fsck instead. */
Rob Landley18958e92006-06-13 18:28:33 +0000233
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000234#if defined __GLIBC__ || defined __UCLIBC__ \
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200235 || defined __dietlibc__ || defined _NEWLIB_VERSION
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200236# include <features.h>
237# define HAVE_FEATURES_H
238# include <stdint.h>
239# define HAVE_STDINT_H
Mike Frysinger9412ec72008-02-07 22:41:33 +0000240#elif !defined __APPLE__
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200241/* Largest integral types. */
242# if BB_BIG_ENDIAN
243/* Looks BROKEN! */
Denis Vlasenko87468852007-04-13 23:22:00 +0000244typedef long intmax_t;
245typedef unsigned long uintmax_t;
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200246# else
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000247__extension__
Denis Vlasenko87468852007-04-13 23:22:00 +0000248typedef long long intmax_t;
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000249__extension__
Denis Vlasenko87468852007-04-13 23:22:00 +0000250typedef unsigned long long uintmax_t;
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200251# endif
Bernhard Reutner-Fischere00fc162006-05-26 13:10:10 +0000252#endif
253
Bernhard Reutner-Fischerc966ba42007-01-18 10:32:09 +0000254/* Size-saving "small" ints (arch-dependent) */
255#if defined(i386) || defined(__x86_64__) || defined(__mips__) || defined(__cris__)
256/* add other arches which benefit from this... */
257typedef signed char smallint;
258typedef unsigned char smalluint;
259#else
260/* for arches where byte accesses generate larger code: */
261typedef int smallint;
262typedef unsigned smalluint;
263#endif
264
Bernhard Reutner-Fischera8e2e182007-01-20 21:27:18 +0000265/* ISO C Standard: 7.16 Boolean type and values <stdbool.h> */
266#if (defined __digital__ && defined __unix__)
267/* old system without (proper) C99 support */
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200268# define bool smalluint
Bernhard Reutner-Fischera8e2e182007-01-20 21:27:18 +0000269#else
270/* modern system, so use it */
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200271# include <stdbool.h>
Bernhard Reutner-Fischera8e2e182007-01-20 21:27:18 +0000272#endif
273
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000274/* Try to defeat gcc's alignment of "char message[]"-like data */
275#if 1 /* if needed: !defined(arch1) && !defined(arch2) */
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200276# define ALIGN1 __attribute__((aligned(1)))
277# define ALIGN2 __attribute__((aligned(2)))
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000278#else
279/* Arches which MUST have 2 or 4 byte alignment for everything are here */
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200280# define ALIGN1
281# define ALIGN2
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000282#endif
283
Bernhard Reutner-Fischera8e2e182007-01-20 21:27:18 +0000284
Mike Frysinger88407592006-07-20 19:31:07 +0000285/* uclibc does not implement daemon() for no-mmu systems.
Bernhard Reutner-Fischer507cd752006-05-31 10:04:03 +0000286 * For 0.9.29 and svn, __ARCH_USE_MMU__ indicates no-mmu reliably.
287 * For earlier versions there is no reliable way to check if we are building
Denis Vlasenko9e589212008-01-24 01:33:42 +0000288 * for a mmu-less system.
Bernhard Reutner-Fischer507cd752006-05-31 10:04:03 +0000289 */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +0000290#if ENABLE_NOMMU || \
291 (defined __UCLIBC__ && __UCLIBC_MAJOR__ >= 0 && __UCLIBC_MINOR__ >= 9 && \
292 __UCLIBC_SUBLEVEL__ > 28 && !defined __ARCH_USE_MMU__)
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200293# define BB_MMU 0
294# define USE_FOR_NOMMU(...) __VA_ARGS__
295# define USE_FOR_MMU(...)
Denis Vlasenko473dae02007-04-11 07:04:23 +0000296#else
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200297# define BB_MMU 1
298# define USE_FOR_NOMMU(...)
299# define USE_FOR_MMU(...) __VA_ARGS__
Bernhard Reutner-Fischer507cd752006-05-31 10:04:03 +0000300#endif
301
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200302/* Don't use lchown with glibc older than 2.1.x */
303#if defined(__GLIBC__) && __GLIBC__ <= 2 && __GLIBC_MINOR__ < 1
Mike Frysinger88407592006-07-20 19:31:07 +0000304# define lchown chown
305#endif
306
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200307#if defined(__digital__) && defined(__unix__)
Rob Landley8fba99f2006-05-27 22:08:01 +0000308
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000309# include <standards.h>
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000310# include <inttypes.h>
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000311# define PRIu32 "u"
Denis Vlasenko0de3c552007-04-12 12:31:02 +0000312/* use legacy setpgrp(pid_t,pid_t) for now. move to platform.c */
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000313# define bb_setpgrp() do { pid_t __me = getpid(); setpgrp(__me,__me); } while (0)
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000314# if !defined ADJ_OFFSET_SINGLESHOT && defined MOD_CLKA && defined MOD_OFFSET
315# define ADJ_OFFSET_SINGLESHOT (MOD_CLKA | MOD_OFFSET)
316# endif
317# if !defined ADJ_FREQUENCY && defined MOD_FREQUENCY
318# define ADJ_FREQUENCY MOD_FREQUENCY
319# endif
320# if !defined ADJ_TIMECONST && defined MOD_TIMECONST
321# define ADJ_TIMECONST MOD_TIMECONST
322# endif
323# if !defined ADJ_TICK && defined MOD_CLKB
324# define ADJ_TICK MOD_CLKB
325# endif
Rob Landley8fba99f2006-05-27 22:08:01 +0000326
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +0200327#else
Denis Vlasenko6ebb2f52008-12-03 10:46:12 +0000328
329# define bb_setpgrp() setpgrp()
330
Rob Landley18958e92006-06-13 18:28:33 +0000331#endif
332
Dan Fandrich21a542d2009-10-27 11:05:00 +0100333#if defined(__GLIBC__)
334# define fdprintf dprintf
335#endif
336
337#if defined(__dietlibc__)
338#undef HAVE_STRCHRNUL
339#endif
340
341#if defined(__WATCOMC__)
342#undef HAVE_FDPRINTF
343#undef HAVE_STRCHRNUL
344#undef HAVE_VASPRINTF
345#endif
346
347#if defined(__FreeBSD__)
348#undef HAVE_STRCHRNUL
349#endif
350
351/*
352 * Now, define prototypes for all the functions defined in platform.c
353 * These must come after all the HAVE_* macros are defined (or not)
354 */
355
356#ifndef HAVE_STRCHRNUL
357extern char *strchrnul(const char *s, int c) FAST_FUNC;
358#endif
359
360#ifndef HAVE_VASPRINTF
361extern int vasprintf(char **string_ptr, const char *format, va_list p) FAST_FUNC;
362#endif
363
364#ifndef HAVE_FDPRINTF
365extern int fdprintf(int fd, const char *format, ...);
366#endif
Denys Vlasenko5a49d282009-05-19 13:18:45 +0200367
Denis Vlasenkof81e8db2009-04-09 12:35:13 +0000368#endif