diff options
Diffstat (limited to 'libc/config/linux/app.h')
-rw-r--r-- | libc/config/linux/app.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libc/config/linux/app.h b/libc/config/linux/app.h index f3d11da..11ac6ee 100644 --- a/libc/config/linux/app.h +++ b/libc/config/linux/app.h @@ -35,17 +35,6 @@ struct TLSImage { uintptr_t align; }; -// Linux manpage on `proc(5)` says that the aux vector is an array of -// unsigned long pairs. -// (see: https://man7.org/linux/man-pages/man5/proc.5.html) -using AuxEntryType = unsigned long; -// Using the naming convention from `proc(5)`. -// TODO: Would be nice to use the aux entry structure from elf.h when available. -struct AuxEntry { - AuxEntryType id; - AuxEntryType value; -}; - struct Args { uintptr_t argc; @@ -70,9 +59,6 @@ struct AppProperties { // Environment data. uintptr_t *env_ptr; - - // Auxiliary vector data. - AuxEntry *auxv_ptr; }; [[gnu::weak]] extern AppProperties app; |