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