003 File Manager
Current Path:
/usr/src/lib/libc/powerpc64/gen
usr
/
src
/
lib
/
libc
/
powerpc64
/
gen
/
📁
..
📄
Makefile.inc
(260 B)
📄
_ctx_start.S
(1.94 KB)
📄
_set_tp.c
(1.5 KB)
📄
_setjmp.S
(4.1 KB)
📄
fabs.S
(1.48 KB)
📄
flt_rounds.c
(2.16 KB)
📄
fpgetmask.c
(1.81 KB)
📄
fpgetround.c
(1.8 KB)
📄
fpgetsticky.c
(1.91 KB)
📄
fpsetmask.c
(1.96 KB)
📄
fpsetround.c
(1.95 KB)
📄
infinity.c
(578 B)
📄
makecontext.c
(3.61 KB)
📄
setjmp.S
(4.92 KB)
📄
signalcontext.c
(3.19 KB)
📄
sigsetjmp.S
(4.74 KB)
📄
syncicache.c
(3.07 KB)
Editing: infinity.c
#include <sys/cdefs.h> #if 0 #if defined(LIBC_SCCS) && !defined(lint) __RCSID("$NetBSD: infinity.c,v 1.2 1998/11/14 19:31:02 christos Exp $"); #endif /* LIBC_SCCS and not lint */ #endif __FBSDID("$FreeBSD$"); /* infinity.c */ #include <math.h> /* bytes for +Infinity on powerpc */ 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 {0xff, 0xc0, 0, 0} #else { 0, 0, 0xc0, 0xff } #endif };
Upload File
Create Folder