]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/mips/gen/infinity.c
This commit was generated by cvs2svn to compensate for changes in r81404,
[FreeBSD/FreeBSD.git] / lib / libc / mips / gen / infinity.c
1 /* infinity.c */
2
3 #if defined(LIBC_SCCS) && !defined(lint)
4 static char rcsid[] = "$OpenBSD: infinity.c,v 1.2 1996/08/19 08:16:01 tholo Exp $";
5 #endif /* LIBC_SCCS and not lint */
6
7 #include <math.h>
8 #include <sys/types.h>
9
10 /* bytes for +Infinity on a MIPS */
11 #if BYTE_ORDER == BIG_ENDIAN
12 char __infinity[] = { 0x7f, 0xf0, 0, 0, 0, 0, 0, 0 };
13 #else
14 char __infinity[] = { 0, 0, 0, 0, 0, 0, 0xf0, 0x7f };
15 #endif