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