mirror of
https://github.com/ziglang/zig.git
synced 2025-12-21 21:53:08 +00:00
7 lines
81 B
C
Vendored
7 lines
81 B
C
Vendored
#include "libm.h"
|
|
|
|
float __math_invalidf(float x)
|
|
{
|
|
return (x - x) / (x - x);
|
|
}
|