Projet_SETI_RISC-V/riscv-gnu-toolchain/binutils/sim/testsuite/lib/newlibcheck.c

11 lines
198 B
C
Raw Normal View History

2023-03-06 14:48:14 +01:00
/* Used by the test harness to see if toolchain uses newlib. */
#include <newlib.h>
#if defined(__NEWLIB__) || defined(_NEWLIB_VERSION)
int main()
{
return 0;
}
#else
# error "not newlib"
#endif