indent dummy.c

This commit is contained in:
Bill Kendrick 2017-10-15 11:32:16 -07:00
parent 9bf92ab3e3
commit 062b4036d0

View file

@ -11,9 +11,10 @@ static TYPE x UNUSED;
#endif
#ifdef SYMBOL
static int exists UNUSED = !!SYMBOL;
static int exists UNUSED = ! !SYMBOL;
#endif
int main(int argc UNUSED, char *argv[] UNUSED){
int main(int argc UNUSED, char *argv[]UNUSED)
{
return 0;
}