Commit 26ade897 authored by Alessandro Rubini's avatar Alessandro Rubini

trivial: add pp_sprintf prototype

Signed-off-by: Alessandro Rubini's avatarAlessandro Rubini <rubini@gnudd.com>
parent 70d8dbec
......@@ -21,6 +21,8 @@ extern int pp_printf(const char *fmt, ...)
__attribute__((format(printf, 1, 2)));
extern int pp_vprintf(const char *fmt, va_list args)
__attribute__((format(printf, 1, 0)));
extern int pp_sprintf(char *s, const char *fmt, ...)
__attribute__((format(printf,2,3)));
extern int pp_vsprintf(char *buf, const char *, va_list)
__attribute__ ((format (printf, 2, 0)));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment