freebsd-src/lib/msun/src/s_llroundf.c
David Schultz 4bb190a74b These files should include s_lround.c instead of s_lrint.c.
This only matters for efficiency, not for correctness.
2005-04-08 00:52:27 +00:00

12 lines
216 B
C

#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#define type float
#define roundit roundf
#define dtype long long
#define DTYPE_MIN LLONG_MIN
#define DTYPE_MAX LLONG_MAX
#define fn llroundf
#include "s_lround.c"