003 File Manager
Current Path:
/usr/src/lib/libc/mips/gen
usr
/
src
/
lib
/
libc
/
mips
/
gen
/
📁
..
📄
Makefile.inc
(349 B)
📄
_ctx_start.S
(2.15 KB)
📄
_set_tp.c
(1.54 KB)
📄
_setjmp.S
(6.46 KB)
📄
fabs.S
(2.12 KB)
📄
fabs.c
(1.93 KB)
📄
flt_rounds.c
(819 B)
📁
hardfloat
📄
infinity.c
(417 B)
📄
ldexp.S
(5.99 KB)
📄
makecontext.c
(3.81 KB)
📄
setjmp.S
(7.48 KB)
📄
signalcontext.c
(1.86 KB)
📄
sigsetjmp.S
(2.62 KB)
Editing: infinity.c
/* * infinity.c */ #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); #include <math.h> /* bytes for +Infinity on a 387 */ const union __infinity_un __infinity = { #if BYTE_ORDER == BIG_ENDIAN { 0x7f, 0xf0, 0, 0, 0, 0, 0, 0 } #else { 0, 0, 0, 0, 0, 0, 0xf0, 0x7f } #endif }; /* bytes for NaN */ const union __nan_un __nan = { #if BYTE_ORDER == BIG_ENDIAN {0x7f, 0xa0, 0, 0} #else { 0, 0, 0xa0, 0x7f } #endif };
Upload File
Create Folder