mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-13 05:41:26 +01:00
Annotate creal(), cimag(), and conj() with __pure2.
This commit is contained in:
parent
ad5e21e24b
commit
bda750b404
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=181375
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user