#ifndef R_LINUX_REQUIRED
#define R_LINUX_REQUIRED

#include <rlib/sys/os.hpp>

#ifndef WINDOWS
#define WINDOWS 9876
#else
#error macro 'WINDOWS' is already defined.
#endif
#if __OS_ID__ != 9876
#error Windows is required but not detected.
#endif

#undef WINDOWS

#endif