First, both layers need access to the heap (in fact, the lower layer needs _another_ heap for persistent data, which is a huge mess in itself), so there are two separate heap APIs, one of which calls part of the other internally. This seems excessively pyramid-like, and makes all of the lower layer code unclear when it does memory allocation (it must use alloc_malloc(stdalloc, size) and alloc_free(stdalloc, ptr) instead of malloc(size) and free(ptr)).
Second, because all of the convenient (and safe, due to caching) I/O routines are in the higher layer, it is nearly impossible to debug the lower layer, even in the non-I/O areas, because nothing can be printed.
There are many other small dependency issues, as well as the added complexity of linking two libraries for basic functionality instead of one. The point is, there are too many cross-dependencies between the two libraries, because of the fact that the lower library needs platform independent stuff from the upper one, and the upper one's I/O routines need platform dependent stuff from the lower one.
What do you think I should do? Combining the two would allow me to remove a lot of redundant code and interface, but the whole idea at the beginning was to have the upper C library easily replaced by another C library, such as pdclib (after Solar finishes it in 2030
