Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MorsGames
GitHub Repository: MorsGames/sm64plus
Path: blob/master/lib/src/NaN.c
7857 views
1
typedef union {
2
int i;
3
float f;
4
} fu;
5
const fu NAN = { 0x7f810000 };
6
7