Subj : Re: Linking object files ?? To : borland.public.cpp.borlandcpp From : Bruce Salzman Date : Thu Dec 30 2004 01:29 pm > i'm getting > Linker error: undefined symbol ... > in result of the symbol appearing as > extern int .... > > How can you link the compiler with an object file so it won't give > the above error? The variable must be defined in some other file. Link that file with the one that declares extern int... Regards, Bruce .