From dcb2f6c171d1cd3db84e4cc81a5aeff84c91fdf3 Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Tue, 15 Apr 2025 12:05:18 +0200 Subject: [PATCH] vdisp/aggregate: IWYU --- src/video_display/aggregate.c | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/src/video_display/aggregate.c b/src/video_display/aggregate.c index 105af52b5..36733982f 100644 --- a/src/video_display/aggregate.c +++ b/src/video_display/aggregate.c @@ -35,12 +35,13 @@ * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ - -#ifdef HAVE_CONFIG_H -#include "config.h" -#include "config_unix.h" -#include "config_win32.h" -#endif // HAVE_CONFIG_H +#include // for assert +#include // for pthread_create, pthread_join, pthread_t +#include // for bool, false, true +#include // for uint32_t +#include // for NULL, printf, size_t, fprintf, stderr +#include // for free, calloc, malloc +#include // for strdup, strchr, strtok_r, memcmp, memcpy #include "debug.h" #include "host.h" @@ -49,9 +50,6 @@ #include "video.h" #include "video_display.h" -#include -#include - #define MAGIC_AGGREGATE 0xbbcaa321 struct display_aggregate_state {