Subversion Repositories Kolibri OS

Rev

Rev 4921 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4921 Rev 6099
Line 81... Line 81...
81
/* avoid conflict with historical cabs(struct complex) */
81
/* avoid conflict with historical cabs(struct complex) */
82
/* double cabs(double complex) __RENAME(__c99_cabs);
82
/* double cabs(double complex) __RENAME(__c99_cabs);
83
   float cabsf(float complex) __RENAME(__c99_cabsf);
83
   float cabsf(float complex) __RENAME(__c99_cabsf);
84
   #endif
84
   #endif
85
*/
85
*/
-
 
86
long double cabsl(long double complex) ;
86
double cabs(double complex) ;
87
double cabs(double complex) ;
87
float cabsf(float complex) ;
88
float cabsf(float complex) ;
Line 88... Line 89...
88
 
89
 
89
/* 7.3.8.2 The cpow functions */
90
/* 7.3.8.2 The cpow functions */
Line 100... Line 101...
100
float cargf(float complex);
101
float cargf(float complex);
Line 101... Line 102...
101
 
102
 
102
/* 7.3.9.2 The cimag functions */
103
/* 7.3.9.2 The cimag functions */
103
double cimag(double complex);
104
double cimag(double complex);
104
float cimagf(float complex);
105
float cimagf(float complex);
Line 105... Line 106...
105
/*long double cimagl(long double complex); */
106
long double cimagl(long double complex);
106
 
107
 
107
/* 7.3.9.3 The conj functions */
108
/* 7.3.9.3 The conj functions */
108
double complex conj(double complex);
109
double complex conj(double complex);
Line 115... Line 116...
115
/*long double complex cprojl(long double complex); */
116
/*long double complex cprojl(long double complex); */
Line 116... Line 117...
116
 
117
 
117
/* 7.3.9.5 The creal functions */
118
/* 7.3.9.5 The creal functions */
118
double creal(double complex);
119
double creal(double complex);
119
float crealf(float complex);
120
float crealf(float complex);
Line 120... Line 121...
120
/*long double creall(long double complex); */
121
long double creall(long double complex);
Line 121... Line 122...
121
 
122