diff options
Diffstat (limited to 'Userland/Services/TelnetServer/main.cpp')
-rw-r--r-- | Userland/Services/TelnetServer/main.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Userland/Services/TelnetServer/main.cpp b/Userland/Services/TelnetServer/main.cpp index 3adda4b83a..ed7b778647 100644 --- a/Userland/Services/TelnetServer/main.cpp +++ b/Userland/Services/TelnetServer/main.cpp @@ -27,9 +27,7 @@ #include "Client.h" #include <AK/ByteBuffer.h> #include <AK/HashMap.h> -#include <AK/IPv4Address.h> #include <AK/String.h> -#include <AK/StringBuilder.h> #include <AK/Types.h> #include <LibCore/ArgsParser.h> #include <LibCore/EventLoop.h> @@ -39,6 +37,7 @@ #include <stdio.h> #include <stdlib.h> #include <sys/ioctl.h> +#include <unistd.h> static void run_command(int ptm_fd, String command) { |