blob: 62014fab67aa4ca26c6730f46dd5659849dc824b [file] [log] [blame] [edit]
#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;
}