diff options
author | Andrew Kaster <akaster@serenityos.org> | 2023-01-07 14:21:43 -0700 |
---|---|---|
committer | Andrew Kaster <andrewdkaster@gmail.com> | 2023-01-21 10:43:59 -0700 |
commit | ad30b8c4477877c676b9c759c4714f5c5d6742e4 (patch) | |
tree | c6a88421eb50c7f58f5bdec53b13d3cdcce21cd7 /Userland/Libraries/LibELF | |
parent | 7ab37ee22cb85820ec73f0677f06125c466feeff (diff) | |
download | serenity-ad30b8c4477877c676b9c759c4714f5c5d6742e4.zip |
Kernel+Libraries: Move defines and types from sys/auxv.h to Kernel/API
And don't include <sys/auxv.h> from LibELF/AuxiliaryVector.h, to reduce
the number of Kernel files that include LibC headers.
Diffstat (limited to 'Userland/Libraries/LibELF')
-rw-r--r-- | Userland/Libraries/LibELF/AuxiliaryVector.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibELF/AuxiliaryVector.h b/Userland/Libraries/LibELF/AuxiliaryVector.h index 4ce365b463..80f4e847cf 100644 --- a/Userland/Libraries/LibELF/AuxiliaryVector.h +++ b/Userland/Libraries/LibELF/AuxiliaryVector.h @@ -8,7 +8,7 @@ #include <AK/StringView.h> #include <AK/Types.h> -#include <sys/auxv.h> +#include <Kernel/API/POSIX/sys/auxv.h> static_assert(sizeof(auxv_t) % sizeof(FlatPtr) == 0); |