cosmopolitan/libc/math/__math_invalidf.c

7 lines
91 B
C
Raw Normal View History

2020-06-15 14:18:57 +00:00
#include "libc/math/libm.h"
float __math_invalidf(float x)
{
return (x - x) / (x - x);
}