1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:17:35 +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

@ -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>