* libm/complex/cargf.c: Use crealf instead of creal.
This commit is contained in:
parent
a52370396d
commit
abc9278b2d
|
@ -1,3 +1,7 @@
|
|||
2010-11-25 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||
|
||||
* libm/complex/cargf.c: Use crealf instead of creal.
|
||||
|
||||
2010-11-19 Andy Koppe <andy.koppe@gmail.com>
|
||||
|
||||
* libc/locale/locale.c (loadlocale): Recognise the "cjknarrow"
|
||||
|
|
|
@ -15,5 +15,5 @@ float
|
|||
cargf(float complex z)
|
||||
{
|
||||
|
||||
return atan2f( cimagf(z), creal(z) );
|
||||
return atan2f( cimagf(z), crealf(z) );
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue