mirror of
https://gitee.com/openharmony/third_party_libsnd
synced 2025-03-01 15:15:52 +00:00
12 lines
115 B
C
12 lines
115 B
C
int main (void)
|
|
{
|
|
#if __GNUC__
|
|
#if __clang__
|
|
This is clang
|
|
# endif
|
|
#else
|
|
This is not GCC.
|
|
#endif
|
|
return 0 ;
|
|
}
|