libreSSL/crypto/compat/arc4random.h
Brent Cook 1b1bce16b1 update to newly-refactored arc4random compatibility shims
the thread-private bits can move next

ok beck@
2014-07-18 09:19:23 -05:00

17 lines
212 B
C

#ifdef __linux__
#include "arc4random_linux.h"
#endif
#ifdef __APPLE__
#include "arc4random_osx.h"
#endif
#ifdef __sun
#include "arc4random_solaris.h"
#endif
#ifdef __WIN32
#include "arc4random_win.h"
#endif