* grub-core/osdep/exec.c: Use unix version on cygwin.

This commit is contained in:
Vladimir Serbinenko 2013-12-14 21:39:03 +01:00
parent 0df77d793c
commit f684d7e1a9
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2013-12-14 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/osdep/exec.c: Use unix version on cygwin.
2013-12-13 Vladimir Serbinenko <phcoder@gmail.com>
Implement multiboot2 EFI BS specification.

View File

@ -1,3 +1,3 @@
#if !defined (__MINGW32__) && !defined (__CYGWIN__) && !defined (__AROS__)
#if (!defined (__MINGW32__) || defined (__CYGWIN__)) && !defined (__AROS__)
#include "unix/exec.c"
#endif