Rev 2131 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2131 | Rev 2307 | ||
|---|---|---|---|
| Line 34... | Line 34... | ||
| 34 | 34 | ||
| 35 | #include <print.h> |
35 | #include <print.h> |
| 36 | 36 | ||
| 37 | int vsprintf(char *str, const char *fmt, va_list ap) |
37 | int vsprintf(char *str, const char *fmt, va_list ap) |
| 38 | { |
38 | { |
| 39 | return vsnprintf(str, (size_t)-1, fmt, ap); |
39 | return vsnprintf(str, (size_t) - 1, fmt, ap); |
| 40 | } |
40 | } |
| 41 | 41 | ||
| 42 | /** @} |
42 | /** @} |
| 43 | */ |
43 | */ |