Blame | Last modification | View Log | Download | RSS feed
#ifndef COMPLEX_H #define COMPLEX_H typedef struct { double r; double i; } complex; #endif
#ifndef COMPLEX_H
#define COMPLEX_H
typedef struct {
double r;
double i;
} complex;
#endif