15 lines
195 B
C
Raw Normal View History

2024-04-14 22:45:38 +02:00
#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;
}