aboutsummaryrefslogtreecommitdiff
path: root/sim/testsuite/lib/newlibcheck.c
blob: ea1d86428854dadeb0791eead7d8cf326d13ee34 (plain)
1
2
3
4
5
6
7
8
9
10
/* 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