schweikh 57bf7bbe3f Print a '-' sign for negative zero. Tested with
#include <stdio.h>
	int main(void)
	{
		printf("%+f\n", -0.0);
		printf("%+f\n", +0.0);
		printf("%+f\n",  0.0);
		return 0;
	}

to output
-0.000000
+0.000000
+0.000000

PR:		bin/41823
Submitted by:	GOTO Kentaro <gotoken@notwork.org>
Liked by:	bde
MFC after:	3 weeks
2002-08-27 20:11:08 +00:00
..
2002-05-31 05:01:17 +00:00
2002-05-29 15:42:59 +00:00
2002-05-27 19:27:43 +00:00
2002-05-30 09:53:47 +00:00