#ifndef _GSL_COMPLEX_H
#define _GSL_COMPLEX_H

typedef struct
  {
    double real;
    double imag;
  }
complex;

#endif /* _GSL_COMPLEX_H */
