1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 16:37:47 +00:00

LookupServer: Fix missing POSIX includes

This commit is contained in:
Jean-Baptiste Boric 2021-05-23 16:35:03 +02:00 committed by Andreas Kling
parent 5ced9a3dfb
commit 8e6241b78b
2 changed files with 2 additions and 1 deletions

View file

@ -19,7 +19,7 @@
#include <LibCore/LocalSocket.h>
#include <LibCore/UDPSocket.h>
#include <stdio.h>
#include <sys/time.h>
#include <time.h>
#include <unistd.h>
namespace LookupServer {