mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-03 04:40:18 -05:00
514135f563
- CC-RX for RX architecture - CC-RL for RL78 architecture - CC-RH for RH850 architecture Closes: #26880
16 lines
196 B
C
16 lines
196 B
C
#include "module.h"
|
|
#if defined(__USE_LIBFUN)
|
|
extern int renesas_libfun();
|
|
#endif
|
|
|
|
int i;
|
|
int main()
|
|
{
|
|
#if defined(__USE_LIBFUN)
|
|
i = renesas_libfun();
|
|
#else
|
|
i = INTERNAL;
|
|
#endif
|
|
return i;
|
|
}
|