diff options
| author | Ilias Apalodimas <[email protected]> | 2025-07-07 14:25:06 +0300 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-07-14 15:16:35 -0600 |
| commit | 2115ec51d413be7fb81678225f8063ec9a20b4ba (patch) | |
| tree | cbd96d90429343105550028c8576a4a56baa238a /tools | |
| parent | bcc8d24d62b5fadb19013c6e00211bf14210954b (diff) | |
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 <[email protected]>
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/mkenvimage.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
