xref: /netbsd-src/external/gpl3/gdb/dist/sim/testsuite/lib/linuxcheck.c (revision 4b169a6ba595ae283ca507b26b15fdff40495b1c)
1 /* Used by the test harness to see if toolchain targets Linux.  */
2 #ifdef __linux__
main()3 int main()
4 {
5   return 0;
6 }
7 #else
8 # error "not linux"
9 #endif
10