Jens Schweikhardt 3dd657600a 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-14 04:32:02 +00:00
2002-03-21 23:39:28 +00:00
2001-09-30 21:41:46 +00:00
2002-08-24 07:15:55 +00:00
2002-06-24 13:52:26 +00:00
2002-05-13 12:11:54 +00:00
2002-03-22 00:12:20 +00:00
2002-06-21 01:35:37 +00:00
2002-01-06 08:47:19 +00:00
2002-06-17 15:28:59 +00:00
2002-08-02 07:09:53 +00:00