Enabled the regex code in the library. We know have POSIX regular expression
[unix-history] / lib / libF77 / d_imag.c
#include "f2c.h"
#ifdef KR_headers
double d_imag(z) doublecomplex *z;
#else
double d_imag(doublecomplex *z)
#endif
{
return(z->i);
}