Blob


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