The R Project SVN R

Rev

Blame | Last modification | View Log | Download | RSS feed

#ifndef COMPLEX_H
#define COMPLEX_H

typedef struct {
    double r;
    double i;
} complex;

#endif