Hello
There are 2 problems here.
1- Inside of the .lcf file you need to use the function linkage name.
The compiler internally adds a _ prefix to all objects with global scope.
So the linkage name for function __ldivu__ is ___ldivu__ (3 leading underscore characters).
2- As the function is stored in the library file you need to reference the library name in the OBJECT command.
Please check the .xMAP file to retrieve the exact name of the library you are using.
The OBJECT command should then look as follows (provided you are linking the library librt.a to your application):
OBJECT( ___ldivu__, librt.a)
CrasyCat