mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 08:21:05 -05:00
14 lines
278 B
C
14 lines
278 B
C
/*
|
|
* infinity.c
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
#include <math.h>
|
|
|
|
/* bytes for +Infinity on aarch64 */
|
|
const union __infinity_un __infinity = { { 0, 0, 0, 0, 0, 0, 0xf0, 0x7f } };
|
|
|
|
/* bytes for NaN */
|
|
const union __nan_un __nan = { { 0, 0, 0xc0, 0xff } };
|