summaryrefslogtreecommitdiff
path: root/emfloat.c
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2008-11-16 03:13:38 +0000
committerMatt Turner <mattst88@gmail.com>2008-11-16 03:13:38 +0000
commit1df846b3f94aa7ca9a6622577c367c864131bd04 (patch)
tree4ada2450229a22d5d3d0a2a67d780ffcc7bd0e27 /emfloat.c
parent761470f9b51f2df8d25baf6060a7acfd333ba698 (diff)
Fix ansi/pedantic warnings
git-svn-id: svn://mattst88.com/svn/cleanbench/trunk@65 0d43b9a7-5ab2-4d7b-af9d-f64450cef757
Diffstat (limited to 'emfloat.c')
-rw-r--r--emfloat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/emfloat.c b/emfloat.c
index 39e9c40..4a68fe2 100644
--- a/emfloat.c
+++ b/emfloat.c
@@ -344,7 +344,6 @@ if (exponent_difference < 0)
StickyShiftRightMant(ptr, exponent_difference);
}
}
-return;
}
@@ -355,7 +354,8 @@ return;
** The kind of rounding we do here is simplest...referred to as
** "chop". "Extraneous" rightmost bits are simply hacked off.
*/
-void static RoundInternalFPF(InternalFPF *ptr)
+static void
+RoundInternalFPF(InternalFPF *ptr)
{
/* int i; */