
Run the tests only if enabled explicitly by an undocumented cache entry. We will enable it on hosts known to have the toolchains. Closes: #26735
16 lines
190 B
C
16 lines
190 B
C
#include "module.h"
|
|
#if defined(__USE_LIBFUN)
|
|
extern int diab_libfun();
|
|
#endif
|
|
|
|
int i;
|
|
int main()
|
|
{
|
|
#if defined(__USE_LIBFUN)
|
|
i = diab_libfun();
|
|
#else
|
|
i = INTERNAL;
|
|
#endif
|
|
return i;
|
|
}
|