From f755993d040a8ea9c1acf758efce76da60870627 Mon Sep 17 00:00:00 2001 From: John Hauser Date: Fri, 10 Feb 2017 12:38:35 -0800 Subject: Release 3c. See "doc/TestFloat-history.html". --- source/writeCase_ab_f32.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source/writeCase_ab_f32.c') diff --git a/source/writeCase_ab_f32.c b/source/writeCase_ab_f32.c index f5d8385..e18cfe9 100644 --- a/source/writeCase_ab_f32.c +++ b/source/writeCase_ab_f32.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 The Regents of the University of California. -All rights reserved. +Copyright 2011, 2012, 2013, 2014, 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: @@ -41,13 +41,13 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "writeHex.h" #include "writeCase.h" -void writeCase_ab_f32( float32_t a, float32_t b, const char *sepStringPtr ) +void writeCase_ab_f32( float32_t a, float32_t b ) { writeHex_f32( a, 0 ); fputs( " ", stdout ); writeHex_f32( b, 0 ); - fputs( sepStringPtr, stdout ); + fputs( " ", stdout ); } -- cgit v1.1