grub/util/random.c
2013-10-04 01:29:10 +02:00

5 lines
111 B
C

#if defined (_WIN32) || defined (__CYGWIN__)
#include "random_windows.c"
#else
#include "random_unix.c"
#endif