Userland: Add missing limits.h header includes

This is currently being implicitly including by InodeWatcherEvent.h by
way of FileWatcher.h. The former will soon be removed from the latter,
which would otherwise cause a compile error in these files.
This commit is contained in:
Timothy Flynn 2023-01-18 08:53:09 -05:00 committed by Tim Flynn
parent 6ef8100e25
commit 98e6dbf50a
2 changed files with 2 additions and 0 deletions

View file

@ -11,6 +11,7 @@
#include <Kernel/API/InodeWatcherFlags.h>
#include <LibCore/Notifier.h>
#include <errno.h>
#include <limits.h>
#include <string.h>
#include <sys/inotify.h>
#include <sys/ioctl.h>

View file

@ -16,6 +16,7 @@
#include <LibCore/LocalServer.h>
#include <LibCore/Stream.h>
#include <LibDNS/Packet.h>
#include <limits.h>
#include <stdio.h>
#include <time.h>
#include <unistd.h>