#ifndef POINT_H #define POINT_H struct point { double x, y; }; void read(point&); #endif