musl-tcc/src/math/__math_invalid.c

7 lines
82 B
C

#include "libm.h"
double __math_invalid(double x)
{
return (x - x) / (x - x);
}