cd46aa6cef
the function of these files exceeds what can be sanely handled in shell in posix-comaptible way. Also writing it in C extends the functionality to non-UNIX-like OS and minimal environments.
7 lines
191 B
C
7 lines
191 B
C
#ifdef __linux__
|
|
#include "linux/platform.c"
|
|
#elif defined (__MINGW32__) || defined (__CYGWIN__) || defined (__AROS__)
|
|
#include "basic/no_platform.c"
|
|
#else
|
|
#include "basic/platform.c"
|
|
#endif
|