diff options
| author | David Lamparter <equinox@diac24.net> | 2019-05-12 22:39:59 +0200 |
|---|---|---|
| committer | David Lamparter <equinox@diac24.net> | 2019-06-03 16:44:32 +0200 |
| commit | 8be3678a2331250b0559d07526e66b73d1794d8c (patch) | |
| tree | a4af45407a189a6d7ee0a03649ce3f070502e1e6 /lib/printf/printflocal.h | |
| parent | e8c672ea8101c541f66e0959d526ae4f5a2a778d (diff) | |
lib/printf: rename & private __find_arguments
These are internal to printf(), and symbols starting with __ are
reserved for the compiler/libc.
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'lib/printf/printflocal.h')
| -rw-r--r-- | lib/printf/printflocal.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/printf/printflocal.h b/lib/printf/printflocal.h index 5860c5c04e..a2de161130 100644 --- a/lib/printf/printflocal.h +++ b/lib/printf/printflocal.h @@ -34,6 +34,8 @@ * $FreeBSD$ */ +#include "compiler.h" + /* * Flags used during conversion. */ @@ -92,7 +94,7 @@ union arg { }; /* Handle positional parameters. */ -int __find_arguments(const char *, va_list, union arg **); +int _frr_find_arguments(const char *, va_list, union arg **) DSO_LOCAL; #ifdef WCHAR_SUPPORT -int __find_warguments(const wchar_t *, va_list, union arg **); +int _frr_find_warguments(const wchar_t *, va_list, union arg **) DSO_LOCAL; #endif |
