Move OS-dependent files to grub-core/osdep and document it.

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2013-10-08 17:30:22 +02:00
parent a5b0365ab2
commit 672fa55e81
30 changed files with 39 additions and 30 deletions

5
grub-core/osdep/random.c Normal file
View file

@ -0,0 +1,5 @@
#if defined (_WIN32) || defined (__CYGWIN__)
#include "windows/random.c"
#else
#include "unix/random.c"
#endif