summaryrefslogtreecommitdiff
path: root/isinteger.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 /isinteger.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 'isinteger.c')
-rw-r--r--isinteger.c14
1 files changed, 2 insertions, 12 deletions
diff --git a/isinteger.c b/isinteger.c
index 58eba9dc1..0efc5ac09 100644
--- a/isinteger.c
+++ b/isinteger.c
@@ -1,6 +1,6 @@
/* mpfr_isinteger -- test if a mpfr variable is integer
-Copyright (C) 2001 Free Software Foundation.
+Copyright (C) 2001 Free Software Foundation, Inc.
This file is part of the MPFR Library.
@@ -24,18 +24,8 @@ MA 02111-1307, USA. */
#include "mpfr.h"
#include "mpfr-impl.h"
- /* The computation of y=pow(x,z) is done by
-
- y=exp(z*log(x))=x^z
- */
-
int
-#if __STDC__
-mpfr_isinteger(mpfr_srcptr x)
-#else
-mpfr_isinteger(x)
- mpfr_srcptr x;
-#endif
+mpfr_isinteger (mpfr_srcptr x)
{
mpfr_t u;