summaryrefslogtreecommitdiffstats
path: root/grub-core/osdep/relpath.c
diff options
context:
space:
mode:
Diffstat (limited to 'grub-core/osdep/relpath.c')
-rw-r--r--grub-core/osdep/relpath.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/grub-core/osdep/relpath.c b/grub-core/osdep/relpath.c
new file mode 100644
index 0000000..4e10d8a
--- /dev/null
+++ b/grub-core/osdep/relpath.c
@@ -0,0 +1,7 @@
+#if defined (__MINGW32__) || defined (__CYGWIN__)
+#include "windows/relpath.c"
+#elif defined (__AROS__)
+#include "aros/relpath.c"
+#else
+#include "unix/relpath.c"
+#endif