#ifndef POINT_H_ #define POINT_H_ typedef struct { int x, y; } Point; #endif //POINT_H_