1: #ifndef COMMON_H 2: #define COMMON_H 3: 4: /*cartesian coordinate type*/ 5: typedef struct 6: { 7: int x; 8: int y; 9: }coord; 10: 11: #endif