You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
383 B
15 lines
383 B
6 years ago
|
#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);
|
||
|
}
|