blob: a0cb27feefbb39cc659d5d5d6c6bc53d808b4226 [file] [log] [blame]
#ifndef DEF_A
# error "DEF_A not defined"
#endif
#ifndef DEF_B
# error "DEF_B not defined"
#endif
extern void a(void);
extern void b(void);
int main(void)
{
a();
b();
return 0;
}