Add missing include <string.h> for memmove()

This commit is contained in:
Romain Vimont 2022-10-19 15:13:55 +02:00
parent 16e2c1ce26
commit cb46e4a64a

View file

@ -6,6 +6,7 @@
#include <stdbool.h>
#include <stddef.h>
#include <stdlib.h>
#include <string.h>
// Adapted from vlc_vector:
// <https://code.videolan.org/videolan/vlc/-/blob/0857947abaed9c89810cd96353aaa1b7e6ba3b0d/include/vlc_vector.h>