
// "Public" Symbols from main.c

// Decide whether "PUBLIC" is to provide a definition or a declaration
#if defined DO_MAIN_DEFINITIONS
// "PUBLIC" is to provide a <i><b>definition</b></i>
#define DOC 
#else
// "PUBLIC" is to provide an extern <i><b>declaration</b></i>
#define DOC extern
#endif

// Now the "Public" Symbols

PUBLIC char tom;
PUBLIC int  dick;
PUBLIC long harry;