aboutsummaryrefslogtreecommitdiff
path: root/source/writeHex.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/writeHex.c')
-rw-r--r--source/writeHex.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/source/writeHex.c b/source/writeHex.c
index 0a3109c..21a8cb8 100644
--- a/source/writeHex.c
+++ b/source/writeHex.c
@@ -1,12 +1,12 @@
/*============================================================================
-This C source file is part of TestFloat, Release 3b, a package of programs for
+This C source file is part of TestFloat, Release 3c, a package of programs for
testing the correctness of floating-point arithmetic complying with the IEEE
Standard for Floating-Point, by John R. Hauser.
-Copyright 2011, 2012, 2013, 2014, 2015, 2016 The Regents of the University of
-California. All rights reserved.
+Copyright 2011, 2012, 2013, 2014, 2015, 2016, 2017 The Regents of the
+University of California. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
@@ -152,6 +152,8 @@ void writeHex_f32( float32_t a, char sepChar )
}
+#ifdef FLOAT64
+
void writeHex_f64( float64_t a, char sepChar )
{
union { uint64_t ui; float64_t f; } uA;
@@ -168,6 +170,8 @@ void writeHex_f64( float64_t a, char sepChar )
}
+#endif
+
#ifdef EXTFLOAT80
void writeHex_extF80M( const extFloat80_t *aPtr, char sepChar )