mirror of
https://github.com/ziglang/zig.git
synced 2026-01-20 06:15:21 +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);
|
|
}
|