Blame


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