Hi
In an effort to better understand Linux, I have been doing some static and dynamic linking and looking at the startup times versus executable sizes.
I also use dlopen ("/path/to/some/lib.so", RTLD_LAZY) to call/use functions in libs.
To then use the actual functions, I call them with dlsym(handle, "TheFunction") however I will need to know what these functions
are called, what parameters and variable types they use.
I'm assuming the only way to get these is to look at the source, hence my question, where can one get the source for TinyCore and CorePlus?
Thanks.