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

9 lines
128 B
C

#ifndef OBJB
# error "OBJB is not defined, but should be"
#endif
extern int b_dep(void);
int b_obj(void)
{
return b_dep();
}