2013-10-04 01:29:10 +02:00
|
|
|
#if defined (_WIN32) || defined (__CYGWIN__)
|
2013-10-08 17:30:22 +02:00
|
|
|
#include "windows/random.c"
|
2013-10-08 21:28:14 +02:00
|
|
|
#elif defined (__linux__) || defined (__FreeBSD__) \
|
|
|
|
|| defined (__FreeBSD_kernel__) || defined (__OpenBSD__) \
|
|
|
|
|| defined (__GNU__) || defined (__NetBSD__) \
|
2013-10-19 02:30:05 +02:00
|
|
|
|| defined (__APPLE__) || defined(__sun__) || defined (__HAIKU__)
|
2013-10-08 17:30:22 +02:00
|
|
|
#include "unix/random.c"
|
2013-10-08 21:28:14 +02:00
|
|
|
#else
|
|
|
|
#include "basic/random.c"
|
2013-10-04 01:29:10 +02:00
|
|
|
#endif
|