From: Ilias Apalodimas Date: Mon, 7 Jul 2025 11:25:06 +0000 (+0300) Subject: tools: mkenvimage: Make xstrtol() static X-Git-Tag: v2025.10-rc1~74 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2115ec51d413be7fb81678225f8063ec9a20b4ba;p=thirdparty%2Fu-boot.git tools: mkenvimage: Make xstrtol() static This function is only used locally. Enabling -Wmissing-prototypes triggers a warning. Mark it as static. Signed-off-by: Ilias Apalodimas --- diff --git a/tools/mkenvimage.c b/tools/mkenvimage.c index 885cdb1390e..944ec82e761 100644 --- a/tools/mkenvimage.c +++ b/tools/mkenvimage.c @@ -47,7 +47,7 @@ static void usage(const char *exec_name) exec_name); } -long int xstrtol(const char *s) +static long int xstrtol(const char *s) { long int tmp;