summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/Emscripten/module.c
blob: 62014fab67aa4ca26c6730f46dd5659849dc824b (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 emscripten_libfun();
#endif

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