From a8b181daeda5ccb1ee5404a093757a5d18cdda90 Mon Sep 17 00:00:00 2001 From: Alistair Buxton Date: Tue, 30 Apr 2024 04:02:26 +0100 Subject: [PATCH] Add missing includes cstdint and sys/select.h --- packetServer.h | 1 + ttxline.h | 1 + ttxpage.h | 1 + 3 files changed, 3 insertions(+) diff --git a/packetServer.h b/packetServer.h index 4a71b59..ae76550 100644 --- a/packetServer.h +++ b/packetServer.h @@ -9,6 +9,7 @@ #else #include #include /* for socket(), bind(), and connect() */ +#include /* for fd_set() */ #include /* for sockaddr_in and inet_ntoa() */ #include /* for close() */ #endif diff --git a/ttxline.h b/ttxline.h index f42b617..03ff2bb 100644 --- a/ttxline.h +++ b/ttxline.h @@ -1,5 +1,6 @@ #ifndef TTXLINE_H #define TTXLINE_H +#include #include #include #include diff --git a/ttxpage.h b/ttxpage.h index b015d8f..7b0529e 100644 --- a/ttxpage.h +++ b/ttxpage.h @@ -8,6 +8,7 @@ #include #include +#include #include #include