Sign in
gnu
/
binutils-gdb
/
552f1157c6262e274295e9c8a131de13fa7b00a3
/
.
/
sim
/
testsuite
/
lib
/
newlibcheck.c
blob: ea1d86428854dadeb0791eead7d8cf326d13ee34 [
file
]
/* 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