Blame


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