1*47557Sbostic /*- 2*47557Sbostic * Copyright (c) 1991 The Regents of the University of California. 3*47557Sbostic * All rights reserved. 4*47557Sbostic * 5*47557Sbostic * %sccs.include.redist.c% 6*47557Sbostic */ 7*47557Sbostic 8*47557Sbostic #if defined(LIBC_SCCS) && !defined(lint) 9*47557Sbostic static char sccsid[] = "@(#)isinf.c 5.1 (Berkeley) 03/18/91"; 10*47557Sbostic #endif /* LIBC_SCCS and not lint */ 11*47557Sbostic 12*47557Sbostic /* ARGSUSED */ 13*47557Sbostic isnan(d) 14*47557Sbostic double d; 15*47557Sbostic { 16*47557Sbostic return(0); 17*47557Sbostic } 18*47557Sbostic 19*47557Sbostic /* ARGSUSED */ 20*47557Sbostic isinf(d) 21*47557Sbostic double d; 22*47557Sbostic { 23*47557Sbostic return(0); 24*47557Sbostic } 25