The R Project SVN R

Rev

Rev 2211 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

#ifndef COMPLEX_H
#define COMPLEX_H

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

#endif