xref: /csrg-svn/lib/libc/vax/gen/isinf.c (revision 61232)
147557Sbostic /*-
2*61232Sbostic  * Copyright (c) 1991, 1993
3*61232Sbostic  *	The Regents of the University of California.  All rights reserved.
447557Sbostic  *
547557Sbostic  * %sccs.include.redist.c%
647557Sbostic  */
747557Sbostic 
847557Sbostic #if defined(LIBC_SCCS) && !defined(lint)
9*61232Sbostic static char sccsid[] = "@(#)isinf.c	8.1 (Berkeley) 06/04/93";
1047557Sbostic #endif /* LIBC_SCCS and not lint */
1147557Sbostic 
1247557Sbostic /* ARGSUSED */
isnan(d)1347557Sbostic isnan(d)
1447557Sbostic 	double d;
1547557Sbostic {
1647557Sbostic 	return(0);
1747557Sbostic }
1847557Sbostic 
1947557Sbostic /* ARGSUSED */
isinf(d)2047557Sbostic isinf(d)
2147557Sbostic 	double d;
2247557Sbostic {
2347557Sbostic 	return(0);
2447557Sbostic }
25