Changes in uspace/lib/c/generic/rtld/rtld.c [153c7a29:1d6dd2a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/rtld/rtld.c
r153c7a29 r1d6dd2a 40 40 #include <rtld/rtld_debug.h> 41 41 #include <stdlib.h> 42 #include <str.h> 42 43 43 44 rtld_t *runtime_env; … … 45 46 46 47 /** Initialize the runtime linker for use in a statically-linked executable. */ 47 int rtld_init_static(void)48 { 49 int rc;48 errno_t rtld_init_static(void) 49 { 50 errno_t rc; 50 51 51 52 runtime_env = &rt_env_static; … … 70 71 * @return EOK on success or non-zero error code 71 72 */ 72 int rtld_prog_process(elf_finfo_t *p_info, rtld_t **rre)73 errno_t rtld_prog_process(elf_finfo_t *p_info, rtld_t **rre) 73 74 { 74 75 rtld_t *env;
Note:
See TracChangeset
for help on using the changeset viewer.