Home | History | Annotate | Line # | Download | only in lib
      1 /* Used by the test harness to see if toolchain uses newlib.  */
      2 #include <newlib.h>
      3 #if defined(__NEWLIB__) || defined(_NEWLIB_VERSION)
      4 int main()
      5 {
      6   return 0;
      7 }
      8 #else
      9 # error "not newlib"
     10 #endif
     11