blob: eb4b8609a7a56231b67ccaaaf996b24b2968d0e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef DEF_SubDirLinkAImportedForImport
# error "DEF_SubDirLinkAImportedForImport is not defined but should be!"
#endif
#ifndef DEF_SubDirLinkBImportedForImport
# error "DEF_SubDirLinkBImportedForImport is not defined but should be!"
#endif
extern int testTopDirLib(void);
extern int testSubDirLinkA(void);
int main(void)
{
return (testTopDirLib() + testSubDirLinkA() + 0);
}
|