Codebase list libf2c2 / debian/20130926-1 d_imag.c
debian/20130926-1

Tree @debian/20130926-1 (Download .tar.gz)

d_imag.c @debian/20130926-1raw · history · blame

#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