diff options
author | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2001-11-16 13:22:13 +0000 |
---|---|---|
committer | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2001-11-16 13:22:13 +0000 |
commit | 569a16f84e4ec55a207c83bceba2eb68fc5acd6b (patch) | |
tree | 56e2e55f898e53d5fc32ba2ebea667eeb48898ef /sqrt_ui.c | |
parent | 629ac173de88c32f2274b1bb509aa77815fcf209 (diff) | |
download | mpfr-569a16f84e4ec55a207c83bceba2eb68fc5acd6b.tar.gz |
removed K&R function headers
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@1548 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'sqrt_ui.c')
-rw-r--r-- | sqrt_ui.c | 9 |
1 files changed, 1 insertions, 8 deletions
@@ -1,6 +1,6 @@ /* mpfr_sqrt_ui -- square root of a machine integer -Copyright (C) 2000-2001 Free Software Foundation. +Copyright (C) 2000, 2001 Free Software Foundation, Inc. This file is part of the MPFR Library. @@ -28,14 +28,7 @@ MA 02111-1307, USA. */ #include "mpfr-impl.h" int -#if __STDC__ mpfr_sqrt_ui (mpfr_ptr r, unsigned long u, mp_rnd_t rnd_mode) -#else -mpfr_sqrt_ui (r, u, rnd_mode) - mpfr_ptr r; - unsigned long u; - mp_rnd_t rnd_mode; -#endif { if (u) { |