diff options
Diffstat (limited to 'lib/msun/src/s_llround.c')
-rw-r--r-- | lib/msun/src/s_llround.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/msun/src/s_llround.c b/lib/msun/src/s_llround.c new file mode 100644 index 0000000..827dfc1 --- /dev/null +++ b/lib/msun/src/s_llround.c @@ -0,0 +1,11 @@ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + +#define type double +#define roundit round +#define dtype long long +#define DTYPE_MIN LLONG_MIN +#define DTYPE_MAX LLONG_MAX +#define fn llround + +#include "s_lround.c" |