Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
refs/heads/release
/
.
/
Tests
/
RunCMake
/
IAR
/
module.c
blob: 2f72a42b1371d5784be2ec11e6c822c09dde6bd0 [
file
] [
log
] [
blame
] [
edit
]
#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
;
}