aboutsummaryrefslogtreecommitdiff
path: root/source/writeCase_abc_f16.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/writeCase_abc_f16.c')
-rw-r--r--source/writeCase_abc_f16.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/source/writeCase_abc_f16.c b/source/writeCase_abc_f16.c
index 1f0471d..a37ca9d 100644
--- a/source/writeCase_abc_f16.c
+++ b/source/writeCase_abc_f16.c
@@ -1,11 +1,11 @@
/*============================================================================
-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 The Regents of the University of
+Copyright 2011, 2012, 2013, 2014, 2015, 2017 The Regents of the University of
California. All rights reserved.
Redistribution and use in source and binary forms, with or without
@@ -41,9 +41,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "writeHex.h"
#include "writeCase.h"
-void
- writeCase_abc_f16(
- float16_t a, float16_t b, float16_t c, const char *sepStringPtr )
+#ifdef FLOAT16
+
+void writeCase_abc_f16( float16_t a, float16_t b, float16_t c )
{
writeHex_f16( a, 0 );
@@ -51,7 +51,9 @@ void
writeHex_f16( b, 0 );
fputs( " ", stdout );
writeHex_f16( c, 0 );
- fputs( sepStringPtr, stdout );
+ fputs( " ", stdout );
}
+#endif
+