Are you including the definition of the funtions in
the sources that calls them?

/*//////
/ a.c  /
//////*/

void something(void)
{
//do something
}

/*//////
/ a.h  /
//////*/

void something(void);

/*//////
/ b.c  /
//////*/
#include "a.h"

void somethingelse (void)
{
  something();
}



--- David <[EMAIL PROTECTED]> wrote:
> When I compile my application, all the source
> compiles fine but when it gets
> to the linking stage, I get an error that says
> 'undefined reference to' and
> it gives the name of my function.  This happens for
> two functions I have.
> They are both defined in anothre source file but are
> being called from my
> form handle event.  I am using Falch.net
> DeveloperStudo V2.7.2.  Any input
> to how to correct it would be great.
> 
> Thanks,
> David
> 
> 
> 
> -- 
> For information on using the Palm Developer Forums,
> or to unsubscribe, please see
http://www.palmos.com/dev/support/forums/


__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com

-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/

Reply via email to