Blame


1 c423c56e 2022-09-25 op #include_next "stdlib.h"
2 c423c56e 2022-09-25 op
3 c423c56e 2022-09-25 op #include "../config.h"
4 c423c56e 2022-09-25 op
5 c423c56e 2022-09-25 op #ifndef __dead
6 c423c56e 2022-09-25 op # define __dead __attribute__((noreturn))
7 c423c56e 2022-09-25 op #endif
8 c423c56e 2022-09-25 op
9 c423c56e 2022-09-25 op #if !HAVE_GETPROGNAME
10 c423c56e 2022-09-25 op const char *getprogname(void);
11 c423c56e 2022-09-25 op #endif
12 c423c56e 2022-09-25 op
13 c423c56e 2022-09-25 op #if !HAVE_SETPROCTITLE
14 c423c56e 2022-09-25 op const char *setproctitle(const char *, ...);
15 c423c56e 2022-09-25 op #endif
16 c423c56e 2022-09-25 op
17 c423c56e 2022-09-25 op #if !HAVE_FREEZERO
18 c423c56e 2022-09-25 op void freezero(void *, size_t);
19 c423c56e 2022-09-25 op #endif
20 c423c56e 2022-09-25 op
21 c423c56e 2022-09-25 op #if !HAVE_REALLOCARRAY
22 c423c56e 2022-09-25 op void *reallocarray(void *, size_t, size_t);
23 c423c56e 2022-09-25 op #endif
24 c423c56e 2022-09-25 op
25 c423c56e 2022-09-25 op #if !HAVE_RECALLOCARRAY
26 c423c56e 2022-09-25 op void *recallocarray(void *, size_t, size_t, size_t);
27 c423c56e 2022-09-25 op #endif
28 c423c56e 2022-09-25 op
29 c423c56e 2022-09-25 op #if !HAVE_STRTONUM
30 c423c56e 2022-09-25 op long long strtonum(const char *, long long, long long, const char **);
31 c423c56e 2022-09-25 op #endif