diff options
author | john haque <j.eh@mchsi.com> | 2012-02-19 08:44:00 -0600 |
---|---|---|
committer | john haque <j.eh@mchsi.com> | 2012-02-19 08:44:00 -0600 |
commit | cb17a712ea65f6510e0000374cce4efbf4ffb902 (patch) | |
tree | 3b82a95607edb6adba2bbd49934851c6547d7703 /builtin.c | |
parent | 0221eb79f43f4ef5c8d74759679a501607936d19 (diff) | |
download | gawk-cb17a712ea65f6510e0000374cce4efbf4ffb902.tar.gz |
Finish builtins for MPFR.
Diffstat (limited to 'builtin.c')
-rw-r--r-- | builtin.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -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) |