aboutsummaryrefslogtreecommitdiff
path: root/src/console
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2024-04-11 14:28:19 +0200
committerElyes Haouas <ehaouas@noos.fr>2024-04-12 04:25:07 +0000
commit4bbec0c6916ba272410c0f4541e32c2f91a7affc (patch)
treead97efb03124cc93b0058ca9b688da272a678c8c /src/console
parentdc3a6f8593c5a204e48e7c858b9a3ed83ac40909 (diff)
tree: Drop duplicated <stdarg.h> and <stdio.h>
<string.h> is supposed to provide <stdarg.h> and <stdio.h> Change-Id: I021ba535ba5ec683021c4dfc41ac18d9cebbcfd2 Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/81853 Reviewed-by: Eric Lai <ericllai@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/console')
-rw-r--r--src/console/vsprintf.c1
-rw-r--r--src/console/vtxprintf.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/src/console/vsprintf.c b/src/console/vsprintf.c
index 68926397a6..06b9e494a4 100644
--- a/src/console/vsprintf.c
+++ b/src/console/vsprintf.c
@@ -1,7 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#include <console/vtxprintf.h>
-#include <stdarg.h>
#include <string.h>
struct vsnprintf_context {
diff --git a/src/console/vtxprintf.c b/src/console/vtxprintf.c
index cfba6db420..fba76bcb71 100644
--- a/src/console/vtxprintf.c
+++ b/src/console/vtxprintf.c
@@ -6,7 +6,6 @@
#include <console/vtxprintf.h>
#include <ctype.h>
-#include <stdarg.h>
#include <string.h>
#include <types.h>