initial top-level import of subdirectories

This commit is contained in:
Brent Cook
2014-07-10 06:21:51 -05:00
parent e9eff5016a
commit 2b6dbc39ef
19 changed files with 426 additions and 0 deletions

16
include/stdlib.h Normal file
View File

@@ -0,0 +1,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