__math_invalid.c raw

   1  #include "libm.h"
   2  
   3  double __math_invalid(double x)
   4  {
   5  	return (x - x) / (x - x);
   6  }
   7