Book a Demo!
Store
Features
Docs
Share
Support
News
About
Policies
Sign Up
Sign In
wine-mirror
Edit Copy
Star
GitHub Repository:
wine-mirror/wine
Path:
blob/master/libs/musl/src/math/__math_invalidf.c
4
3
9
7
views
1
#include "libm.h"
2
3
float
__math_invalidf
(
float
x
)
4
{
5
return
(
x
-
x
)
/
(
x
-
x
)
;
6
}
7
8