/*- * Copyright (c) 1991 The Regents of the University of California. * All rights reserved. * * %sccs.include.redist.c% */ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)isinf.c 5.1 (Berkeley) 03/18/91"; #endif /* LIBC_SCCS and not lint */ /* ARGSUSED */ isnan(d) double d; { return(0); } /* ARGSUSED */ isinf(d) double d; { return(0); }