mirror of
https://github.com/Cantera/cantera.git
synced 2025-02-25 18:55:29 -06:00
17 lines
189 B
C
17 lines
189 B
C
#include "f2c.h"
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef KR_headers
|
|
double r_imag(z) complex *z;
|
|
#else
|
|
double r_imag(complex *z)
|
|
#endif
|
|
{
|
|
return(z->i);
|
|
}
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|