7 lines
92 B
C
7 lines
92 B
C
|
#include "libc/math/libm.h"
|
||
|
|
||
|
double __math_invalid(double x)
|
||
|
{
|
||
|
return (x - x) / (x - x);
|
||
|
}
|