2018-10-28 12:09:07 +01:00

17 lines
189 B
C

#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;
}