25d Subj : Re: beginners linking problem To : borland.public.cpp.borlandcpp From : Bob Gonder Date : Fri Sep 05 2003 02:49 pm cory wrote: >My main program "main.c" looks like this: >The function tf.c looks like this: > >Error: Unresolved external _tf referenced from module main.c If you are doing this from within the IDE, you need to add both main.c and tf.c to your project. If you are doing this from the commandline, you have 2 methods. 1) bcc main tf 2) bcc -c -mc main bcc -c -mc tf tlink c0c.obj+ main.obj+ tf.obj, main, main,cc.lib . 0