Here's the test program I used

#include <stdio.h>
#include <gsl/gsl_math.h>

int main () {
  double x = GSL_NEGZERO;
  double y = -0.0;
  printf("%a %a %a\n", 0.0, x, y);
}


$ ./a.out 
0x0p+0 0x0p+0 -0x0p+0

_______________________________________________
Bug-gsl mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-gsl

Reply via email to