blob: 6c2de9382d3bf18be8aaee8ac6d46d9765c12146 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include_next <stdlib.h>
#ifndef LIBCRYPTOCOMPAT_STDLIB_H
#define LIBCRYPTOCOMPAT_STDLIB_H
#include <sys/stat.h>
#include <sys/time.h>
#include <stdint.h>
uint32_t arc4random(void);
void arc4random_buf(void *_buf, size_t n);
void *reallocarray(void *, size_t, size_t);
long long strtonum(const char *nptr, long long minval,
long long maxval, const char **errstr);
#endif
|