aboutsummaryrefslogtreecommitdiff
path: root/crypto/compat/arc4random.h
blob: 53b5a46d7ff9464abe9205046d69e7756d4ac87c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef LIBCRYPTOCOMPAT_ARC4RANDOM_H
#define LIBCRYPTOCOMPAT_ARC4RANDOM_H

#include <sys/param.h>

#if defined(__FreeBSD__)
#include "arc4random_freebsd.h"

#elif defined(__linux__)
#include "arc4random_linux.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