2 /* @(#)z_ceil.c 1.0 98/08/13 */
3 /*****************************************************************
7 * x - floating point value
10 * Smallest integer greater than x.
13 * This routine returns the smallest integer greater than x.
15 *****************************************************************/
20 #ifndef _DOUBLE_IS_32BITS
31 else if (x
> -1.0 && x
< 1.0)
32 return (x
> 0 ? 1.0 : 0.0);
34 return (x
> 0 ? f
+ 1.0 : f
);
37 #endif /* _DOUBLE_IS_32BITS */