Originally posted by oiaohm
View Post
Developer can do whatever he wants. Libraries are not magic nor privileged. They are the exact same as any other piece of user code since they get loaded into the address space of the process. In fact, this library you linked to is supposed to be statically linked. In other words, when your program is compiled to binary, there won't be a trace of this library, it will be part of the program's code itself.
Comment