mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-12 09:17:53 +00:00
6 lines
92 B
C
6 lines
92 B
C
#include "libc/math/libm.h"
|
|
|
|
double __math_invalid(double x)
|
|
{
|
|
return (x - x) / (x - x);
|
|
}
|