Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/lib/libm/src/s_ceilf.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- src/lib/libm/src/s_ceilf.c 1999/07/02 15:37:42 1.6 +++ src/lib/libm/src/s_ceilf.c 2002/05/26 22:01:54 1.7 @@ -15,24 +15,16 @@ #include #if defined(LIBM_SCCS) && !defined(lint) -__RCSID("$NetBSD: s_ceilf.c,v 1.6 1999/07/02 15:37:42 simonb Exp $"); +__RCSID("$NetBSD: s_ceilf.c,v 1.7 2002/05/26 22:01:54 wiz Exp $"); #endif #include "math.h" #include "math_private.h" -#ifdef __STDC__ static const float huge = 1.0e30; -#else -static float huge = 1.0e30; -#endif -#ifdef __STDC__ - float ceilf(float x) -#else - float ceilf(x) - float x; -#endif +float +ceilf(float x) { int32_t i0,j0; u_int32_t i;