mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-02 09:46:37 +03:00
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 <ilias.apalodimas@linaro.org>
This commit is contained in:
committed by
Tom Rini
parent
bcc8d24d62
commit
2115ec51d4
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user