Projet_SETI_RISC-V/riscv-gnu-toolchain/gdb/sim/testsuite/lib/linuxcheck.c
2023-03-06 14:48:14 +01:00

9 lines
144 B
C

/* Used by the test harness to see if toolchain targets Linux. */
#ifdef __linux__
int main()
{
return 0;
}
#else
# error "not linux"
#endif