diff options
Diffstat (limited to 'src/math/s_llrint.c')
-rw-r--r-- | src/math/s_llrint.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/math/s_llrint.c b/src/math/s_llrint.c deleted file mode 100644 index 2b1e00d0..00000000 --- a/src/math/s_llrint.c +++ /dev/null @@ -1,8 +0,0 @@ -#include <math.h> - -// FIXME: incorrect exception behavior - -long long llrint(double x) -{ - return rint(x); -} |