summaryrefslogtreecommitdiffstats
path: root/Tests/ExportImport/Export/testLib9.c
blob: 2f6f8ebc77c758df418b553ec31f0fc8b4434d63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef testLib9ObjPub_USED
#  error "testLib9ObjPub_USED not defined!"
#endif
#ifndef testLib9ObjPriv_USED
#  error "testLib9ObjPriv_USED not defined!"
#endif
#ifdef testLib9ObjIface_USED
#  error "testLib9ObjIface_USED defined but should not be!"
#endif
int testLib9ObjPub(void);
int testLib9ObjPriv(void);
int testLib9(void)
{
  return (testLib9ObjPub() + testLib9ObjPriv());
}