17 lines
296 B
C
17 lines
296 B
C
#ifndef INCLUDED_C_COMPILER_H
|
|||
|
|
#define INCLUDED_C_COMPILER_H
|
||
|
|
|
||
|
|
#if defined(__GNUC__) && !defined(__clang__)
|
||
|
|
#include "c_Compiler_GNUC.h"
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#if defined(__clang__)
|
||
|
|
#include "c_Compiler_CLANG.h"
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#if defined(_MSC_VER)
|
||
|
|
#include "c_Compiler_MSVC.h"
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /*INCLUDED_C_COMPILER_H*/
|