summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/IAR/module.c
blob: 2f72a42b1371d5784be2ec11e6c822c09dde6bd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "module.h"
#if defined(__USE_LIBFUN)
extern int iar_libfun();
#endif
__root int i;
__root int main()
{
#if defined(__USE_LIBFUN)
  i = iar_libfun();
#else
  i = INTERNAL;
#endif
  return i;
}