From 4d23a3a1e4929fb9ae50da0a0cc6224e36682889 Mon Sep 17 00:00:00 2001 From: imp Date: Wed, 3 Mar 1999 07:06:17 +0000 Subject: 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. --- lib/libc/mips/gen/infinity.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 lib/libc/mips/gen/infinity.c (limited to 'lib/libc/mips/gen/infinity.c') 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 +#include + +/* 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 -- cgit v1.1