diff options
author | Uros Majstorovic <majstor@majstor.org> | 2018-01-22 15:23:20 +0100 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2018-01-22 15:23:20 +0100 |
commit | 87c71978e556d532a5b91a653514a92acec9a1b7 (patch) | |
tree | b7533e088f1adf07ec46a32e9cf33251a147bbe2 /code/ecp/crypto/compat/arc4random.h | |
parent | b9d0e6e824f222e7f6647806b6afb3c2f4727ab5 (diff) |
arc4random added
Diffstat (limited to 'code/ecp/crypto/compat/arc4random.h')
-rw-r--r-- | code/ecp/crypto/compat/arc4random.h | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/code/ecp/crypto/compat/arc4random.h b/code/ecp/crypto/compat/arc4random.h deleted file mode 100644 index 762aec2..0000000 --- a/code/ecp/crypto/compat/arc4random.h +++ /dev/null @@ -1,35 +0,0 @@ -#ifndef LIBCRYPTOCOMPAT_ARC4RANDOM_H -#define LIBCRYPTOCOMPAT_ARC4RANDOM_H - -#include <sys/param.h> - -#if defined(_AIX) -#include "arc4random_aix.h" - -#elif defined(__FreeBSD__) -#include "arc4random_freebsd.h" - -#elif defined(__hpux) -#include "arc4random_hpux.h" - -#elif defined(__linux__) -#include "arc4random_linux.h" - -#elif defined(__NetBSD__) -#include "arc4random_netbsd.h" - -#elif defined(__APPLE__) -#include "arc4random_osx.h" - -#elif defined(__sun) -#include "arc4random_solaris.h" - -#elif defined(_WIN32) -#include "arc4random_win.h" - -#else -#error "No arc4random hooks defined for this platform." - -#endif - -#endif |