summaryrefslogtreecommitdiff
path: root/Build/source/utils/pmx/pmx-2.6.18/libf2c/r_imag.c
blob: 1b4de14373afc9805cca8d8d97e549d5ea55e099 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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