1*8e54f10bSkleink /* $NetBSD: isinf.c,v 1.8 2004/03/04 23:42:39 kleink Exp $ */
243d6f49eSchristos
3ce0bb6e8Sragge /*-
4ce0bb6e8Sragge * Copyright (c) 1991, 1993
5ce0bb6e8Sragge * The Regents of the University of California. All rights reserved.
6ce0bb6e8Sragge *
7ce0bb6e8Sragge * Redistribution and use in source and binary forms, with or without
8ce0bb6e8Sragge * modification, are permitted provided that the following conditions
9ce0bb6e8Sragge * are met:
10ce0bb6e8Sragge * 1. Redistributions of source code must retain the above copyright
11ce0bb6e8Sragge * notice, this list of conditions and the following disclaimer.
12ce0bb6e8Sragge * 2. Redistributions in binary form must reproduce the above copyright
13ce0bb6e8Sragge * notice, this list of conditions and the following disclaimer in the
14ce0bb6e8Sragge * documentation and/or other materials provided with the distribution.
15eb7c1594Sagc * 3. Neither the name of the University nor the names of its contributors
16ce0bb6e8Sragge * may be used to endorse or promote products derived from this software
17ce0bb6e8Sragge * without specific prior written permission.
18ce0bb6e8Sragge *
19ce0bb6e8Sragge * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20ce0bb6e8Sragge * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21ce0bb6e8Sragge * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22ce0bb6e8Sragge * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23ce0bb6e8Sragge * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24ce0bb6e8Sragge * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25ce0bb6e8Sragge * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26ce0bb6e8Sragge * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27ce0bb6e8Sragge * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28ce0bb6e8Sragge * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29ce0bb6e8Sragge * SUCH DAMAGE.
30ce0bb6e8Sragge */
31ce0bb6e8Sragge
3243d6f49eSchristos #include <sys/cdefs.h>
33ce0bb6e8Sragge #if defined(LIBC_SCCS) && !defined(lint)
3443d6f49eSchristos #if 0
3543d6f49eSchristos static char sccsid[] = "@(#)isinf.c 8.1 (Berkeley) 6/4/93";
3643d6f49eSchristos #else
37*8e54f10bSkleink __RCSID("$NetBSD: isinf.c,v 1.8 2004/03/04 23:42:39 kleink Exp $");
3843d6f49eSchristos #endif
39ce0bb6e8Sragge #endif /* LIBC_SCCS and not lint */
40ce0bb6e8Sragge
4143d6f49eSchristos #include <math.h>
4243d6f49eSchristos
43*8e54f10bSkleink #undef isinf
44*8e54f10bSkleink int isinf __P((double));
45d541ca6dSkleink
46ce0bb6e8Sragge /* ARGSUSED */
47daa40d9aSjtc int
isinf(double d)48a8151a52Sthorpej isinf(double d)
49ce0bb6e8Sragge {
50ce0bb6e8Sragge return (0);
51ce0bb6e8Sragge }
52