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