summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/Diab/module.c
blob: 601b65b464b228da11cebae07e09b588ee52c0ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "module.h"
#if defined(__USE_LIBFUN)
extern int diab_libfun();
#endif

int i;
int main()
{
#if defined(__USE_LIBFUN)
  i = diab_libfun();
#else
  i = INTERNAL;
#endif
  return i;
}