1 #ifndef POINT_H_INCLUDED
2 #define POINT_H_INCLUDED
3 
4 typedef struct {
5   float x, y, z;
6 } float_coord;
7 
8 #endif
9