Add implementations for cimag{,f,l}, creal{,f,l} and conj{,f,l}. They are
needed for cases where GCC's builtin functions cannot be used and for compilers that don't know about them. Approved by: das (mentor)
This commit is contained in:
+12
-6
@@ -41,12 +41,18 @@
|
||||
|
||||
__BEGIN_DECLS
|
||||
|
||||
double cabs(double complex);
|
||||
float cabsf(float complex);
|
||||
double cimag(double complex);
|
||||
float cimagf(float complex);
|
||||
double creal(double complex);
|
||||
float crealf(float complex);
|
||||
double cabs(double complex);
|
||||
float cabsf(float complex);
|
||||
double cimag(double complex);
|
||||
float cimagf(float complex);
|
||||
long double cimagl(long double complex);
|
||||
double complex conj(double complex);
|
||||
float complex conjf(float complex);
|
||||
long double complex
|
||||
conjl(long double complex);
|
||||
double creal(double complex);
|
||||
float crealf(float complex);
|
||||
long double creall(long double complex);
|
||||
|
||||
__END_DECLS
|
||||
|
||||
|
||||
Reference in New Issue
Block a user