Hello,
sorry, but i have a new problem.
yesterday i installed the newest version of "Codewarrior Special Edition".
(File "CW_ColdFire_7.1_SE[1].exe" and Patch to Version 7.1.1 = file "CWCF_V7_1_1.exe").
Prior i used Version 7.0.
If i Compile the project, then the Compiler tells me the error:
*******************************************************************
Error : function has no prototype
flop.c line 137 if( fabs( d4 - dAnswer ) > 0.001 )
Error : function has no prototype
flop.c line 190 if( fabs( d4 - dAnswer ) > 0.001 )
Error : function has no prototype
flop.c line 248 if( fabs( dDifference ) > 0.001 )
Error : function has no prototype
flop.c line 305 if( fabs( dDifference ) > 0.001 )
*******************************************************************
I dont understand the reason for this message, but it comes from the library-function "fabs".
If i include my own prototype in "flop.c" like:
portDOUBLE fabs(portDOUBLE); // HWN 3.10.2008
compilation is OK!
But then the Linker reports me the error:
*******************************************************************
Link Error : Multiply-defined: "remove" in list.c
Previously defined in croutine.c
Link Error : Multiply-defined: "fopen" in list.c
Previously defined in croutine.c
Link Error : Multiply-defined: "fputs" in list.c
Previously defined in croutine.c
Link Error : Multiply-defined: "fgetc" in list.c
Previously defined in croutine.c
Link Error : Multiply-defined: "fclose" in list.c
Previously defined in croutine.c
*******************************************************************
Do you know, what is wrong?
I must use the Special edition, because my students must have this costfree version for their home exercises!
Best regards Werner