Small corrections for handling C99 _Complex

This commit is contained in:
Leo Singer 2020-06-16 19:55:50 -04:00
commit 1adc7dac5d
7 changed files with 6 additions and 18 deletions

View file

@ -72,15 +72,15 @@
%inline
{
complex Conj(complex a)
double complex Conj(complex a)
{
return conj(a);
}
complex float Conjf(float complex a)
float complex Conjf(float complex a)
{
return conj(a);
return conjf(a);
}
}