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