FrankGe 0 Report post Posted December 16, 2004 I've got always this linker error: Unresolved external function: getDate Unresolved external symbol, function: getDate For example a little project with 3 files main.c date.c date.h The main file: ---------------- #include <system.h> #include "date.h" void main() { struct Date d; getDate(&d); } The Date.h file ----------------- #ifndef _DATE_H_ #define _DATE_H_ struct Date { char year; char month; char day; }; void getDate(struct Date *d); #endif The Date.C file ------------------ #include "date.h" void getDate(struct Date *d) { d->year = 2004; d->month = 12; d->day = 16; } Quote Share this post Link to post Share on other sites
Dave 0 Report post Posted December 17, 2004 FrankGe, Looks like a linker issue. I'm currently looking into it. Regards Dave Quote Share this post Link to post Share on other sites
Dave 0 Report post Posted December 19, 2004 Frankge, This is now fixed. Will be available in next compiler release. This was a different problem to the other structure issue you reported. Thanks for both reports Regards Dave Quote Share this post Link to post Share on other sites