Skip to content
This repository has been archived by the owner on Dec 12, 2020. It is now read-only.
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 15 lines (13 sloc) 140 Bytes
#!/bin/sh
C=idCC-$$.c
cat >$C <<_EOF
#ifdef __GNUC__
# ifdef __clang__
CLANG
#else
GCC
# endif
#endif
_EOF
$1 -E $C | tail -n1
rm -f $C