diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2000-04-02 07:41:18 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2000-04-02 07:41:18 +0000 |
commit | b42951578188c5aab5c9f8cbcde4a743f8092cdc (patch) | |
tree | 87e472177973ff9d0a59ecabd43cb630c6936af9 /lib/libc/mips/gen/infinity.c | |
parent | d45e1e2b8b3d88e925564212283fb9072a911a32 (diff) | |
download | FreeBSD-src-b42951578188c5aab5c9f8cbcde4a743f8092cdc.zip FreeBSD-src-b42951578188c5aab5c9f8cbcde4a743f8092cdc.tar.gz |
This commit was manufactured by cvs2svn to create branch 'ALSA'.
Diffstat (limited to 'lib/libc/mips/gen/infinity.c')
-rw-r--r-- | lib/libc/mips/gen/infinity.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/libc/mips/gen/infinity.c b/lib/libc/mips/gen/infinity.c deleted file mode 100644 index 7a0b131..0000000 --- a/lib/libc/mips/gen/infinity.c +++ /dev/null @@ -1,15 +0,0 @@ -/* 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 |