cmake/Tests/ExportImport/Import/A/imp_testExeAbs1.c

14 lines
252 B
C
Raw Normal View History

2015-04-27 22:25:09 +02:00
#include "testLibAbs1.h"
#include "testLibAbs1a.h"
#include "testLibAbs1b.h"
#ifndef testLibAbs1a
2018-08-09 18:06:22 +02:00
# error "testLibAbs1a not defined"
2015-04-27 22:25:09 +02:00
#endif
#ifndef testLibAbs1b
2018-08-09 18:06:22 +02:00
# error "testLibAbs1b not defined"
2015-04-27 22:25:09 +02:00
#endif
2024-04-14 22:45:38 +02:00
int main(void)
2015-04-27 22:25:09 +02:00
{
2016-07-09 11:21:54 +02:00
return 0 + testLibAbs1();
2015-04-27 22:25:09 +02:00
}