void abc(void) { } ABC() { } main() { abc(); ABC(); }
Review this thread: http://www.keil.com/forum/msgpage.asp?MsgID=2077
you can complier this code,what hanppen?
The compiler is fine, It is the linker. The Linker is not case sensitive, so ABC = abc. In this case the linker gets so confused, that it crashes. Just make sure your externals have case insensitive unique names.
Thanks for the code sample. What was your question?
View all questions in Keil forum