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