sc_array: Include string.h for memmove() (#93)

sc_array: Include string.h for memmove() 

This is just to silence compiler warning for mingw build
This commit is contained in:
Ozan Tezcan 2022-08-13 13:43:01 +03:00 committed by GitHub
parent 0b74cbcb2e
commit eb751789eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,7 +33,7 @@
#define SC_ARRAY_H #define SC_ARRAY_H
#include <assert.h> #include <assert.h>
#include <memory.h> #include <string.h>
#include <stdbool.h> #include <stdbool.h>
#include <stddef.h> #include <stddef.h>
#include <stdint.h> #include <stdint.h>