diff options
Diffstat (limited to 'lib/libc/stdlib')
| -rw-r--r-- | lib/libc/stdlib/abort.c | 3 | ||||
| -rw-r--r-- | lib/libc/stdlib/free.c | 2 | ||||
| -rw-r--r-- | lib/libc/stdlib/getenv.c | 2 | ||||
| -rw-r--r-- | lib/libc/stdlib/malloc.c | 2 | ||||
| -rw-r--r-- | lib/libc/stdlib/realloc.c | 2 | ||||
| -rw-r--r-- | lib/libc/stdlib/setenv.c | 2 |
6 files changed, 7 insertions, 6 deletions
diff --git a/lib/libc/stdlib/abort.c b/lib/libc/stdlib/abort.c index 99001570..466329d1 100644 --- a/lib/libc/stdlib/abort.c +++ b/lib/libc/stdlib/abort.c @@ -1,6 +1,7 @@ + #include <__thread.h> // for __thread_self #include <atomic.h> // for LIBC_LOCK -#include <libc.h> // for (anonymous struct)::(anonymous), (anonymous) +#include <libc.h> // for libc, libc::(anonymous) #include <signal.h> // for SIGABRT, sigaction, SIGKILL, SIG_DFL #include <stdlib.h> // for abort #include <syscall.h> // for __syscall, __syscall_2, __syscall_4 diff --git a/lib/libc/stdlib/free.c b/lib/libc/stdlib/free.c index e08b0170..ab656633 100644 --- a/lib/libc/stdlib/free.c +++ b/lib/libc/stdlib/free.c @@ -1,5 +1,5 @@ #include <atomic.h> // for LIBC_UNLOCK, LIBC_LOCK -#include <libc.h> // for (anonymous struct)::(anonymous), (anonymous) +#include <libc.h> // for libc, libc::(anonymous) #include <malloc.h> // for page, page::(anonymous), __malloc_pvec, LARGE_... #include <stddef.h> // for NULL #include <stdint.h> // for uintptr_t diff --git a/lib/libc/stdlib/getenv.c b/lib/libc/stdlib/getenv.c index 17975574..41517e2f 100644 --- a/lib/libc/stdlib/getenv.c +++ b/lib/libc/stdlib/getenv.c @@ -1,5 +1,5 @@ #include <atomic.h> // for LIBC_UNLOCK, LIBC_LOCK -#include <libc.h> // for (anonymous struct)::(anonymous), (anonymous), libc +#include <libc.h> // for libc, libc::(anonymous), weak_reference #include <stddef.h> // for NULL #include <stdlib.h> // for getenv, secure_getenv diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c index 344c9623..556fcbd1 100644 --- a/lib/libc/stdlib/malloc.c +++ b/lib/libc/stdlib/malloc.c @@ -2,7 +2,7 @@ #include <atomic.h> // for LIBC_UNLOCK, LIBC_LOCK #include <features.h> // for __weak -#include <libc.h> // for (anonymous struct)::(anonymous), (anonymous) +#include <libc.h> // for libc, libc::(anonymous) #include <malloc.h> // for page, page::(anonymous), class, global_size_c... #include <stdatomic.h> // for atomic_flag_clear #include <stdint.h> // for uint32_t, uint8_t, uintptr_t diff --git a/lib/libc/stdlib/realloc.c b/lib/libc/stdlib/realloc.c index 4722ac5e..dca8cac2 100644 --- a/lib/libc/stdlib/realloc.c +++ b/lib/libc/stdlib/realloc.c @@ -2,7 +2,7 @@ #include <atomic.h> // for LIBC_UNLOCK, LIBC_LOCK #include <errno.h> // for EINVAL, errno -#include <libc.h> // for (anonymous struct)::(anonymous), (anonymous), libc +#include <libc.h> // for libc, libc::(anonymous) #include <malloc.h> // for page, page::(anonymous), __malloc_pvec #include <stdint.h> // for uintptr_t #include <stdlib.h> // for free, malloc, realloc diff --git a/lib/libc/stdlib/setenv.c b/lib/libc/stdlib/setenv.c index 004a29bd..3dfe3d22 100644 --- a/lib/libc/stdlib/setenv.c +++ b/lib/libc/stdlib/setenv.c @@ -1,7 +1,7 @@ #include "stddef.h" // for NULL #include <atomic.h> // for LIBC_LOCK, LIBC_UNLOCK -#include <libc.h> // for (anonymous), libc, (anonymous struct)::(anonymous) +#include <libc.h> // for libc, libc::(anonymous), libc::LIBC_ENVP_TOUCHED #include <stdlib.h> // for malloc, realloc, setenv #include <string.h> // for strlen, size_t, memcpy, strcpy, strchr, strncmp |
