summaryrefslogtreecommitdiff
path: root/builtin.c
diff options
context:
space:
mode:
authorjohn haque <j.eh@mchsi.com>2012-02-19 08:44:00 -0600
committerjohn haque <j.eh@mchsi.com>2012-02-19 08:44:00 -0600
commitcb17a712ea65f6510e0000374cce4efbf4ffb902 (patch)
tree3b82a95607edb6adba2bbd49934851c6547d7703 /builtin.c
parent0221eb79f43f4ef5c8d74759679a501607936d19 (diff)
downloadgawk-cb17a712ea65f6510e0000374cce4efbf4ffb902.tar.gz
Finish builtins for MPFR.
Diffstat (limited to 'builtin.c')
-rw-r--r--builtin.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/builtin.c b/builtin.c
index d403b7a2..1a3a399c 100644
--- a/builtin.c
+++ b/builtin.c
@@ -1061,7 +1061,6 @@ out2:
need_format = FALSE;
parse_next_arg();
(void) force_number(arg);
-
#ifdef HAVE_MPFR
if (arg->flags & MPFN)
goto mpfr_int;
@@ -1180,7 +1179,6 @@ out2:
need_format = FALSE;
parse_next_arg();
(void) force_number(arg);
-
#ifdef HAVE_MPFR
if (arg->flags & MPFN) {
mpfr_ptr mt;
@@ -3061,8 +3059,6 @@ do_compl(int nargs)
DEREF(tmp);
if (do_lint) {
- if ((tmp->flags & (NUMCUR|NUMBER)) == 0)
- lintwarn(_("compl: received non-numeric argument"));
if (d < 0)
lintwarn(_("compl(%lf): negative value will give strange results"), d);
if (double_to_int(d) != d)