aboutsummaryrefslogtreecommitdiff
path: root/include/stdlib.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--include/stdlib.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
index c314f38..1a1cb6c 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -7,16 +7,16 @@
7#include <sys/time.h> 7#include <sys/time.h>
8#include <stdint.h> 8#include <stdint.h>
9 9
10#ifdef NO_ARC4RANDOM_BUF 10#ifndef HAVE_ARC4RANDOM_BUF
11uint32_t arc4random(void); 11uint32_t arc4random(void);
12void arc4random_buf(void *_buf, size_t n); 12void arc4random_buf(void *_buf, size_t n);
13#endif 13#endif
14 14
15#ifdef NO_REALLOCARRAY 15#ifndef HAVE_REALLOCARRAY
16void *reallocarray(void *, size_t, size_t); 16void *reallocarray(void *, size_t, size_t);
17#endif 17#endif
18 18
19#ifdef NO_STRTONUM 19#ifndef HAVE_STRTONUM
20long long strtonum(const char *nptr, long long minval, 20long long strtonum(const char *nptr, long long minval,
21 long long maxval, const char **errstr); 21 long long maxval, const char **errstr);
22#endif 22#endif