2012-11-02 15:47:40 +01:00
|
|
|
|
|
|
|
#ifndef IFACE_DEFINE
|
|
|
|
#error Expected IFACE_DEFINE
|
|
|
|
#endif
|
|
|
|
|
2013-12-30 14:35:08 +01:00
|
|
|
#include "iface_header.h"
|
|
|
|
|
|
|
|
#ifndef IFACE_HEADER_SRCDIR
|
|
|
|
#error Expected IFACE_HEADER_SRCDIR
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "iface_header_builddir.h"
|
|
|
|
|
|
|
|
#ifndef IFACE_HEADER_BUILDDIR
|
|
|
|
#error Expected IFACE_HEADER_BUILDDIR
|
|
|
|
#endif
|
|
|
|
|
2014-07-09 13:11:38 -04:00
|
|
|
extern int obj();
|
2014-06-16 10:10:18 -04:00
|
|
|
extern int sub();
|
|
|
|
|
2012-11-02 15:47:40 +01:00
|
|
|
int main(int,char**)
|
|
|
|
{
|
2014-07-09 13:11:38 -04:00
|
|
|
return obj() + sub();
|
2012-11-02 15:47:40 +01:00
|
|
|
}
|