diff options
| author | David Schultz <das@FreeBSD.org> | 2008-08-07 14:40:52 +0000 |
|---|---|---|
| committer | David Schultz <das@FreeBSD.org> | 2008-08-07 14:40:52 +0000 |
| commit | bda750b404a1ee2abfe527c8e087464f4e726527 (patch) | |
| tree | 00600d6ad8d6d6ffe541d5867ace9726bba2d4c7 /include/complex.h | |
| parent | ad5e21e24be81c2f915aeca82b5342663652a469 (diff) | |
Notes
Diffstat (limited to 'include/complex.h')
| -rw-r--r-- | include/complex.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/include/complex.h b/include/complex.h index fe73f1d885c8..ae81e3668927 100644 --- a/include/complex.h +++ b/include/complex.h @@ -48,16 +48,17 @@ float cabsf(float complex); long double cabsl(long double complex); double carg(double complex); float cargf(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 cargl(long double complex); +double cimag(double complex) __pure2; +float cimagf(float complex) __pure2; +long double cimagl(long double complex) __pure2; +double complex conj(double complex) __pure2; +float complex conjf(float complex) __pure2; long double complex - conjl(long double complex); -double creal(double complex); -float crealf(float complex); -long double creall(long double complex); + conjl(long double complex) __pure2; +double creal(double complex) __pure2; +float crealf(float complex) __pure2; +long double creall(long double complex) __pure2; double complex csqrt(double complex); float complex csqrtf(float complex); long double complex |
