Bruno Haible wrote:
You can also try a standalone test program, linked against the system's
sprintf(), like this:
===============================
#include <stdio.h>
int main()
{
  char buf[100];
  sprintf (buf, "%Lf", -0.0L);
  printf ("%s\n", buf);
  return 0;
}
===============================

The result on both 5.3 & 6.2 is:
0.000000

-tgc


_______________________________________________
Bug-m4 mailing list
Bug-m4@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-m4

Reply via email to