#ifndef _MYHEADER_H #define _MYHEADER_H 1 struct country { char name[30]; int area; int population; }; struct country *foo(char *, int, int); #endif /* myheader.h */