aboutsummaryrefslogtreecommitdiff
path: root/source/writeCase_ab_f16.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/writeCase_ab_f16.c')
-rw-r--r--source/writeCase_ab_f16.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/writeCase_ab_f16.c b/source/writeCase_ab_f16.c
index 23dc7ee..4063c45 100644
--- a/source/writeCase_ab_f16.c
+++ b/source/writeCase_ab_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
@@ -43,13 +43,13 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifdef FLOAT16
-void writeCase_ab_f16( float16_t a, float16_t b, const char *sepStringPtr )
+void writeCase_ab_f16( float16_t a, float16_t b )
{
writeHex_f16( a, 0 );
fputs( " ", stdout );
writeHex_f16( b, 0 );
- fputs( sepStringPtr, stdout );
+ fputs( " ", stdout );
}