* libm/complex/cargf.c: Use crealf instead of creal.

This commit is contained in:
Corinna Vinschen 2010-11-26 08:59:22 +00:00
parent a52370396d
commit abc9278b2d
2 changed files with 5 additions and 1 deletions

View File

@ -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"

View File

@ -15,5 +15,5 @@ float
cargf(float complex z)
{
return atan2f( cimagf(z), creal(z) );
return atan2f( cimagf(z), crealf(z) );
}