xref: /netbsd-src/external/gpl3/gdb/dist/sim/testsuite/lib/newlibcheck.c (revision 4b169a6ba595ae283ca507b26b15fdff40495b1c)
1 /* Used by the test harness to see if toolchain uses newlib.  */
2 #include <newlib.h>
3 #if defined(__NEWLIB__) || defined(_NEWLIB_VERSION)
main()4 int main()
5 {
6   return 0;
7 }
8 #else
9 # error "not newlib"
10 #endif
11