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