Changes in uspace/lib/c/generic/libc.c [8a1fb09:47b7006] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/libc.c
r8a1fb09 r47b7006 41 41 */ 42 42 43 #include <libc.h> 43 #include <stdio.h> 44 #include <unistd.h> 44 45 #include <stdlib.h> 46 #include <malloc.h> 45 47 #include <tls.h> 46 48 #include <fibril.h> … … 52 54 #include "private/malloc.h" 53 55 #include "private/io.h" 54 55 #ifdef CONFIG_RTLD56 #include <rtld/rtld.h>57 #endif58 56 59 57 static bool env_setup = false; … … 81 79 char **argv; 82 80 83 #ifdef __IN_SHARED_LIBC__84 if (__pcb != NULL && __pcb->rtld_runtime != NULL) {85 runtime_env = (runtime_env_t *) __pcb->rtld_runtime;86 }87 #endif88 81 /* 89 82 * Get command line arguments and initialize
Note:
See TracChangeset
for help on using the changeset viewer.