aboutsummaryrefslogtreecommitdiff
path: root/include/stdlib.h
diff options
context:
space:
mode:
authorBrent Cook <busterb@gmail.com>2014-07-10 06:21:51 -0500
committerBrent Cook <busterb@gmail.com>2014-07-10 06:22:54 -0500
commit2b6dbc39ef274d5298daad1ff864be8fc3c56537 (patch)
treebed05f6232bad0278f952bcfa173c50c202f4309 /include/stdlib.h
parente9eff5016a4ec2153c037c1b888acd2755965755 (diff)
downloadportable-2b6dbc39ef274d5298daad1ff864be8fc3c56537.tar.gz
portable-2b6dbc39ef274d5298daad1ff864be8fc3c56537.tar.bz2
portable-2b6dbc39ef274d5298daad1ff864be8fc3c56537.zip
initial top-level import of subdirectories
Diffstat (limited to 'include/stdlib.h')
-rw-r--r--include/stdlib.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/stdlib.h b/include/stdlib.h
new file mode 100644
index 0000000..6c2de93
--- /dev/null
+++ b/include/stdlib.h
@@ -0,0 +1,16 @@
1#include_next <stdlib.h>
2
3#ifndef LIBCRYPTOCOMPAT_STDLIB_H
4#define LIBCRYPTOCOMPAT_STDLIB_H
5
6#include <sys/stat.h>
7#include <sys/time.h>
8#include <stdint.h>
9
10uint32_t arc4random(void);
11void arc4random_buf(void *_buf, size_t n);
12void *reallocarray(void *, size_t, size_t);
13long long strtonum(const char *nptr, long long minval,
14 long long maxval, const char **errstr);
15
16#endif