#ifndef SUM_STRUCT_H #define SUM_STRUCT_H typedef struct { int a; int b; } AB; extern AB DEFAULT_AB; extern int sumAB(AB); #endif