diff options
author | imp <imp@FreeBSD.org> | 1999-03-03 07:06:17 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 1999-03-03 07:06:17 +0000 |
commit | 4d23a3a1e4929fb9ae50da0a0cc6224e36682889 (patch) | |
tree | 6319ff0addf11af182760607660afd2709373b75 /lib/libc/mips/gen/infinity.c | |
parent | caaaa6363b062987768a65519c536c68acb1a3c7 (diff) | |
download | FreeBSD-src-4d23a3a1e4929fb9ae50da0a0cc6224e36682889.zip FreeBSD-src-4d23a3a1e4929fb9ae50da0a0cc6224e36682889.tar.gz |
Bring in initial libc support for mips. These files were taken from
the OpenBSD tree and should be considered preliminary. They are here
to facilitate building of the tree.
Diffstat (limited to 'lib/libc/mips/gen/infinity.c')
-rw-r--r-- | lib/libc/mips/gen/infinity.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/libc/mips/gen/infinity.c b/lib/libc/mips/gen/infinity.c new file mode 100644 index 0000000..7a0b131 --- /dev/null +++ b/lib/libc/mips/gen/infinity.c @@ -0,0 +1,15 @@ +/* infinity.c */ + +#if defined(LIBC_SCCS) && !defined(lint) +static char rcsid[] = "$OpenBSD: infinity.c,v 1.2 1996/08/19 08:16:01 tholo Exp $"; +#endif /* LIBC_SCCS and not lint */ + +#include <math.h> +#include <sys/types.h> + +/* bytes for +Infinity on a MIPS */ +#if BYTE_ORDER == BIG_ENDIAN +char __infinity[] = { 0x7f, 0xf0, 0, 0, 0, 0, 0, 0 }; +#else +char __infinity[] = { 0, 0, 0, 0, 0, 0, 0xf0, 0x7f }; +#endif |