From: Simon Glass Date: Thu, 15 May 2025 23:31:34 +0000 (-0600) Subject: net: Include string.h in net-legacy.h X-Git-Tag: v2025.10-rc1~118^2~65^2~17 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0b9450989c195430521b01d97ba79a9b644119a6;p=thirdparty%2Fu-boot.git net: Include string.h in net-legacy.h This file uses memcpy() but does not include the header file. Update it. Reviewed-by: Jerome Forissier Signed-off-by: Simon Glass --- diff --git a/include/net-legacy.h b/include/net-legacy.h index 51780999a88..a7dbcec1506 100644 --- a/include/net-legacy.h +++ b/include/net-legacy.h @@ -17,6 +17,7 @@ #include #include #include +#include struct bd_info; struct cmd_tbl;