2 * ====================================================
3 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5 * Developed at SunPro, a Sun Microsystems, Inc. business.
6 * Permission to use, copy, modify, and distribute this
7 * software is freely granted, provided that this notice
9 * ====================================================
17 float nearbyintf(float x
)
26 #ifdef _DOUBLE_IS_32BITS
29 double nearbyint(double x
)
35 return (double) nearbyintf((float) x
);
38 #endif /* defined(_DOUBLE_IS_32BITS) */