summaryrefslogtreecommitdiff
path: root/tests/tcmp2.c
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2001-02-18 12:16:14 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2001-02-18 12:16:14 +0000
commit9fb1aa6953bc4f41c5998af7f7026acb0ef0472f (patch)
treed51fe0cf53496010e06987941e64a262524df0c0 /tests/tcmp2.c
parentdedb8192f65706635e84c7af915260969c30415f (diff)
downloadmpfr-9fb1aa6953bc4f41c5998af7f7026acb0ef0472f.tar.gz
changed "int main(..)" to two lines
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@1008 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'tests/tcmp2.c')
-rw-r--r--tests/tcmp2.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/tcmp2.c b/tests/tcmp2.c
index 4ddb16bea..dc3406f3d 100644
--- a/tests/tcmp2.c
+++ b/tests/tcmp2.c
@@ -82,7 +82,8 @@ void special ()
mpfr_clear(x); mpfr_clear(y);
}
-int main()
+int
+main (void)
{
int i,j; double x=1.0, y, z;
#ifdef __mips
@@ -107,6 +108,6 @@ int main()
if (x<y) { z=x; x=y; y=z; }
if (y != 0.0 && y != -0.0) tcmp2(x, y, -1);
}
+
return 0;
}
-