In CVS, the file gsl/rng/default.c requires the attached patch to make
consistent the output stream used to display the available generators.
Currently most of the output is sent to stderr. However the putchar used
sents to stdout.
Regards,
- Hans
--- default.c.orig 2006-12-26 17:07:19.000000000 +0200
+++ default.c 2006-12-26 17:07:56.000000000 +0200
@@ -63,11 +63,11 @@
if ((++i) % 4 == 0)
{
- putchar ('\n');
+ fputc ('\n', stderr);
}
}
- putchar ('\n');
+ fputc ('\n', stderr);
GSL_ERROR_VAL ("unknown generator", GSL_EINVAL, 0);
}
_______________________________________________
Bug-gsl mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-gsl