The R Project SVN R

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2211 maechler 1
#ifndef COMPLEX_H
2
#define COMPLEX_H
3
 
4
typedef struct {
5
	double r;
6
	double i;
7
} complex;
8
 
9
#endif