From e09ac979c54e7a1bac69652ad80c8428477381d8 Mon Sep 17 00:00:00 2001 From: Daniel Verkamp Date: Tue, 15 Oct 2019 14:28:48 -0700 Subject: [PATCH] plugin: add missing #include in test Fixes warnings during test build: : In function 'main': :52:17: warning: implicit declaration of function 'strerror' [-Wimplicit-function-declaration] :70:9: warning: implicit declaration of function 'memcmp' [-Wimplicit-function-declaration] BUG=None TEST=docker/wrapped_smoke_test.sh Change-Id: Ibec87db4ca289bec9b1a2c7080fdefebb6e86158 Signed-off-by: Daniel Verkamp Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/1863822 Reviewed-by: Zach Reizner Tested-by: kokoro --- tests/plugin_net_config.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/plugin_net_config.c b/tests/plugin_net_config.c index f11fa104e6..c064c537a8 100644 --- a/tests/plugin_net_config.c +++ b/tests/plugin_net_config.c @@ -12,6 +12,7 @@ #include #include #include +#include #include #include "crosvm.h"