cosmopolitan/libc/math/__math_invalid.c

7 lines
92 B
C

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