Kernel+Libraries: Don't include limits.h from LibELF/Validation.h

The fallout of this is that Kernel/Syscalls/execve.cpp doesn't have
access to ARG_MAX anymore, so move that definition to Kernel/API as well
This commit is contained in:
Andrew Kaster 2023-01-07 14:23:02 -07:00 committed by Andrew Kaster
commit c87557e9c1
Notes: sideshowbarker 2024-07-17 03:30:41 +09:00
3 changed files with 2 additions and 3 deletions

View file

@ -8,7 +8,6 @@
#include <AK/StringBuilder.h>
#include <LibC/elf.h>
#include <limits.h>
namespace ELF {