This website requires JavaScript.
Explore
Help
Register
Sign In
ShuriZma
/
BizHawk
mirror of
https://github.com/TASEmulators/BizHawk.git
Watch
1
Star
0
Fork
You've already forked BizHawk
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
c61fd757f2
BizHawk
/
waterbox
/
libc
/
functions
/
math
/
significand.c
8 lines
102 B
C
Raw
Blame
History
#
define _GNU_SOURCE
#
include
<math.h>
double
significand
(
double
x
)
{
return
scalbn
(
x
,
-
ilogb
(
x
)
)
;
}
Reference in New Issue
View Git Blame
Copy Permalink