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