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