You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
195 B

#include "module.h"
#if defined(__USE_LIBFUN)
extern int ticlang_libfun();
#endif
int i;
int main()
{
#if defined(__USE_LIBFUN)
i = ticlang_libfun();
#else
i = INTERNAL;
#endif
return i;
}