2021-09-14 00:13:48 +02:00

9 lines
128 B
C

#ifndef OBJA
# error "OBJA is not defined, but should be"
#endif
extern int a_dep(void);
int a_obj(void)
{
return a_dep();
}