I'm working on developing some extensions to an existing module and I want to include an external library. I've finally figured out how to get my code to link against the library, however standard library functions in the library such as malloc do not seem to have anything to link against since the implementation of those functions in ML seems to be a bit different (malloc, for example, appears to be a macro). Does anyone know how I could get the library working with the standard library functions it needs without having to go through and include dryos.h or something in all the library source files?