Go to the previous, next section.
int uselib(const char *library);
library: [in] points to the path of the shared library to load.
Loads and map a shared library in the current task address space.
On success zero is returned. On error -1 is returned and errno
is
set to one of the following values:
open
and mmap
.
NOEXEC
: the file does not have the necessary magic number
or it is not executable.
Go to the previous, next section.