From 9e34f428454934ea24c3b4f6d04861667fe81c9f Mon Sep 17 00:00:00 2001 From: Nadav Har'El Date: Thu, 20 Jun 2019 10:58:29 +0300 Subject: [PATCH] sched.hh: add missing include sched.hh now uses strlcpy(), which is defined in so we should include it directly instead of hoping that the code including sched.hh will also include string.h. Refs #1022. Signed-off-by: Nadav Har'El --- include/osv/sched.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/include/osv/sched.hh b/include/osv/sched.hh index 5e0caedfa4..3931024133 100644 --- a/include/osv/sched.hh +++ b/include/osv/sched.hh @@ -25,6 +25,7 @@ #include #include #include +#include typedef float runtime_t;