You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#if !defined(FOO)
|
|
# error "FOO not defined"
|
|
#endif
|
|
#if BAR != 3
|
|
# error "FOO not defined to 3"
|
|
#endif
|
|
#if CCOND != 2
|
|
# error "CCOND not defined to 2"
|
|
#endif
|
|
#if defined(SWIFTCOND)
|
|
# error "SWIFTCOND defined"
|
|
#endif
|
|
|
|
extern int ObjCMain(void);
|
|
int main(void)
|
|
{
|
|
return ObjCMain();
|
|
}
|