summaryrefslogtreecommitdiff
path: root/minmax.c
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2001-11-16 13:22:13 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2001-11-16 13:22:13 +0000
commit569a16f84e4ec55a207c83bceba2eb68fc5acd6b (patch)
tree56e2e55f898e53d5fc32ba2ebea667eeb48898ef /minmax.c
parent629ac173de88c32f2274b1bb509aa77815fcf209 (diff)
downloadmpfr-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 'minmax.c')
-rw-r--r--minmax.c18
1 files changed, 1 insertions, 17 deletions
diff --git a/minmax.c b/minmax.c
index 416b96b81..0cb986ceb 100644
--- a/minmax.c
+++ b/minmax.c
@@ -1,6 +1,6 @@
/* mpfr_min -- min and max of x, y
-Copyright (C) 2001 Free Software Foundation.
+Copyright (C) 2001 Free Software Foundation, Inc.
This file is part of the MPFR Library.
@@ -32,15 +32,7 @@ MA 02111-1307, USA. */
*/
int
-#if __STDC__
mpfr_min (mpfr_ptr z, mpfr_srcptr x ,mpfr_srcptr y ,mp_rnd_t rnd_mode)
-#else
-mpfr_min (z, x, y, rnd_mode)
- mpfr_ptr z;
- mpfr_srcptr x;
- mpfr_srcptr y;
- mp_rnd_t rnd_mode;
-#endif
{
if (MPFR_IS_NAN(x) && MPFR_IS_NAN(y) )
{
@@ -65,15 +57,7 @@ mpfr_min (z, x, y, rnd_mode)
z=y if x < y
*/
int
-#if __STDC__
mpfr_max (mpfr_ptr z, mpfr_srcptr x ,mpfr_srcptr y ,mp_rnd_t rnd_mode)
-#else
-mpfr_max (z, x, y, rnd_mode)
- mpfr_ptr z;
- mpfr_srcptr x;
- mpfr_srcptr y;
- mp_rnd_t rnd_mode;
-#endif
{
if (MPFR_IS_NAN(x) && MPFR_IS_NAN(y) )
{