double
is aliased to float
.
71 p = alloc( N + 2 ); 72 if (!p) return NULL; // CK bugfix 050714touch lib/stdlib.c and recompile the library (cd lib; make).
scanf()
erroneously terminates reading strings (%s) when
the character 'v' is encountered in the input.
I have no explanation and no workaround/fix for this bug yet. [M. Eriksson, 17/5/2005]
PId2
in the
library file lib/math.c
is broken for unknown reasons. As a workaround, in file lib/math.c
,
the definition of the cos()
function (lines 60-63)
should be replaced by
float cos( float x ) /* compute cosine function */ { return sin( x + 1.5707963 ); }Thanks to C. Meigen for reporting the bug.
lib/math.c
register int i;should be replaced by
register int i = 0;Thanks to M. Eriksson for reporting the bug and providing the correction. [11/7/2005]
Note that this bug also affected other functions in lib/math.c, such as exp() and pow().
pramsim
command are not forwarded to main()
.
[C. Meigen, 1/7/2005]