libweston: add missing include
Fixes missing prototypes compilation warnings emitted when a function
is defined before its prototype is declared.
These warnings were introduced over time since the switch to meson
because the -Wmissing-protoypes was not included in the compilation
arguments.
Signed-off-by: Guillaume Champagne <champagne.guillaume.c@gmail.com>
diff --git a/libweston/animation.c b/libweston/animation.c
index a81a8c1..9ca7774 100644
--- a/libweston/animation.c
+++ b/libweston/animation.c
@@ -36,6 +36,7 @@
#include <fcntl.h>
#include <libweston/libweston.h>
+#include "libweston-internal.h"
#include "shared/helpers.h"
#include "shared/timespec-util.h"