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