14 lines
226 B
C
14 lines
226 B
C
#include <c_Compiler.h>
|
|
|
|
#if defined(__GNUC__) && !defined(__clang__)
|
|
#include "c_Compiler_GNUC.c"
|
|
#endif
|
|
|
|
#if defined(__clang__)
|
|
#include "c_Compiler_CLANG.c"
|
|
#endif
|
|
|
|
#if defined(_MSC_VER)
|
|
#include "c_Compiler_MSVC.c"
|
|
#endif
|