third_party_libsnd/CMake/compiler_is_gcc.c
2014-07-12 23:18:11 +10:00

12 lines
115 B
C

int main (void)
{
#if __GNUC__
#if __clang__
This is clang
# endif
#else
This is not GCC.
#endif
return 0 ;
}