Changes in uspace/lib/libc/generic/libc.c [7114d83:1ea99cc] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/generic/libc.c
r7114d83 r1ea99cc 53 53 #include <loader/pcb.h> 54 54 55 /* From librtld. */ 56 #include <rtld.h> 57 #include <string.h> 58 55 59 extern int main(int argc, char *argv[]); 56 60 … … 75 79 char **argv; 76 80 81 #ifdef __IN_SHARED_LIBC__ 82 if (__pcb != NULL && __pcb->rtld_runtime != NULL) { 83 runtime_env = (runtime_env_t *) __pcb->rtld_runtime; 84 } 85 #endif 86 77 87 if (__pcb == NULL) { 78 88 argc = 0;
Note:
See TracChangeset
for help on using the changeset viewer.