From a8bd78e634f9ef1ff9c47d6764338ecd00700991 Mon Sep 17 00:00:00 2001 From: Idan Horowitz Date: Thu, 28 Oct 2021 01:00:35 +0300 Subject: [PATCH] LibC: Include sys/uio.h in sys/socket.h for struct iovec --- Kernel/API/POSIX/sys/socket.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Kernel/API/POSIX/sys/socket.h b/Kernel/API/POSIX/sys/socket.h index c7353bc77b..11f1e942dc 100644 --- a/Kernel/API/POSIX/sys/socket.h +++ b/Kernel/API/POSIX/sys/socket.h @@ -7,6 +7,7 @@ #pragma once #include +#include #include #ifdef __cplusplus