summaryrefslogtreecommitdiff
path: root/Tests/ObjectLibrary/LinkObjects/b_obj.c
blob: d0f426a241a4a600cf1c494e9554b7a05d65f17b (plain)
1
2
3
4
5
6
7
8
#ifndef OBJB
#  error "OBJB is not defined, but should be"
#endif
extern int b_dep(void);
int b_obj(void)
{
  return b_dep();
}