xref: /csrg-svn/lib/libc/tahoe/gen/isinf.c (revision 61183)
147558Sbostic /*-
2*61183Sbostic  * Copyright (c) 1991, 1993
3*61183Sbostic  *	The Regents of the University of California.  All rights reserved.
447558Sbostic  *
547558Sbostic  * %sccs.include.redist.c%
647558Sbostic  */
747558Sbostic 
847558Sbostic #if defined(LIBC_SCCS) && !defined(lint)
9*61183Sbostic static char sccsid[] = "@(#)isinf.c	8.1 (Berkeley) 06/04/93";
1047558Sbostic #endif /* LIBC_SCCS and not lint */
1147558Sbostic 
1247558Sbostic /* ARGSUSED */
isnan(d)1347558Sbostic isnan(d)
1447558Sbostic 	double d;
1547558Sbostic {
1647558Sbostic 	return(0);
1747558Sbostic }
1847558Sbostic 
1947558Sbostic /* ARGSUSED */
isinf(d)2047558Sbostic isinf(d)
2147558Sbostic 	double d;
2247558Sbostic {
2347558Sbostic 	return(0);
2447558Sbostic }
25