Portable build framework for OpenNTPD
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#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
|