summaryrefslogtreecommitdiffstats
path: root/src/cpu
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2024-05-27 11:20:07 +0200
committerElyes Haouas <ehaouas@noos.fr>2024-05-29 10:33:54 +0000
commitbdd03c20d5b1cd7ca17e2559a44ddcf1da06f3be (patch)
tree3efad8a2559fba312165272eb2abdb7b72b146db /src/cpu
parent93ca6b676cd0ac4c3755bb69cf690dc23a28b22a (diff)
downloadcoreboot-bdd03c20d5b1cd7ca17e2559a44ddcf1da06f3be.tar.gz
coreboot-bdd03c20d5b1cd7ca17e2559a44ddcf1da06f3be.tar.bz2
coreboot-bdd03c20d5b1cd7ca17e2559a44ddcf1da06f3be.zip
tree: Use <stdio.h> for snprintf
<stdio.h> header is used for input/output operations (such as printf, scanf, fopen, etc.). Although some input/output functions can manipulate strings, they do not need to directly include <string.h> because they are declared independently. Change-Id: Ibe2a4ff6f68843a6d99cfdfe182cf2dd922802aa Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/82665 Reviewed-by: Yidi Lin <yidilin@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/x86/smm/smm_module_loader.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cpu/x86/smm/smm_module_loader.c b/src/cpu/x86/smm/smm_module_loader.c
index 02debfc0cf5b..646f3bb55154 100644
--- a/src/cpu/x86/smm/smm_module_loader.c
+++ b/src/cpu/x86/smm/smm_module_loader.c
@@ -11,6 +11,7 @@
#include <device/mmio.h>
#include <rmodule.h>
#include <smmstore.h>
+#include <stdio.h>
#include <string.h>
#include <types.h>