mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-18 20:58:05 -06: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;
|
|
}
|