1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 16:18:12 +00:00

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>