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
Notes: sideshowbarker 2024-07-18 17:30:20 +09:00
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 {

View file

@ -12,6 +12,7 @@
#include <AK/JsonValue.h>
#include <AK/String.h>
#include <LibCore/File.h>
#include <limits.h>
#include <poll.h>
#include <sys/socket.h>
#include <unistd.h>