grub/grub-core/osdep/relpath.c
Vladimir 'phcoder' Serbinenko a4012f0764 Split make_system_path_relative_to_its_root into separate file
relpath.c from getroot.c as it's common between unix and haiku
	but otherwise haiku doesn't use any functions from unix getroot.c.
2013-10-19 16:21:08 +02:00

7 lines
169 B
C

#if defined (__MINGW32__) || defined (__CYGWIN__)
#include "windows/relpath.c"
#elif defined (__AROS__)
#include "aros/relpath.c"
#else
#include "unix/relpath.c"
#endif