mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-01-29 04:14:27 +00:00
16 lines
202 B
C
16 lines
202 B
C
#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;
|
|
}
|