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-17 05:11:13 +00:00
2002-03-22 21:53:29 +00:00
2002-08-21 17:11:00 +00:00
2002-08-20 03:40:45 +00:00
2002-03-26 23:09:34 +00:00