Blame


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