#ifndef __PERSON_PRIV_H__ #define __PERSON_PRIV_H__ // Defines person outside of main.c's scope to // hide the implementation of the struct from main. struct person_s { char *name; }; #endif