include/sys: Include string.h to silence implicit memset declration.

This change stops the warning "implicit declaration of function 'memset'" when using the `FD_ZERO` macro.
This commit is contained in:
Stuart Ianna 2023-05-19 12:17:47 +10:00 committed by Petro Karashchenko
parent ec2a62c397
commit 8a668fe733
1 changed files with 1 additions and 0 deletions

View File

@ -30,6 +30,7 @@
#include <limits.h>
#include <stdint.h>
#include <signal.h>
#include <string.h>
#include <sys/time.h>
#ifdef CONFIG_FDCHECK