From 1070803581f5c207716992b3158caa087697ace9 Mon Sep 17 00:00:00 2001 From: xoviat Date: Sun, 31 Dec 2017 12:37:29 -0600 Subject: [PATCH] Remove unnedded functions --- runtime/flangrti/fltmanip.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/runtime/flangrti/fltmanip.c b/runtime/flangrti/fltmanip.c index 94319e0bac0..2bbb9340ae7 100644 --- a/runtime/flangrti/fltmanip.c +++ b/runtime/flangrti/fltmanip.c @@ -359,16 +359,6 @@ nearbyintf(float x) return __nearbyintf(x); } double -rint(double x) -{ - return __nearbyint(x); -} -float -rintf(float x) -{ - return __nearbyintf(x); -} -double remainder(double x, double y) { return __remainder(x, y);