Add missing includes

The headers were implicitly included recursively, but include them
explicitly.
This commit is contained in:
Romain Vimont 2025-07-10 22:59:16 +02:00
commit 0522d02d40
2 changed files with 2 additions and 0 deletions

View file

@ -1,6 +1,7 @@
#include "common.h"
#include <stdbool.h>
#include <stdio.h>
#ifdef HAVE_V4L2
# include <libavdevice/avdevice.h>
#endif

View file

@ -2,6 +2,7 @@
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#ifdef _WIN32
# include <ws2tcpip.h>