diff options
Diffstat (limited to 'lib/libm/llroundl.c')
| -rw-r--r-- | lib/libm/llroundl.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/libm/llroundl.c b/lib/libm/llroundl.c new file mode 100644 index 00000000..2c2ee5ec --- /dev/null +++ b/lib/libm/llroundl.c @@ -0,0 +1,6 @@ +#include <math.h> + +long long llroundl(long double x) +{ + return roundl(x); +} |
