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

9 lines
128 B
C

#ifndef OBJC
# error "OBJC is not defined, but should be"
#endif
extern int c_dep(void);
int c_obj(void)
{
return c_dep();
}