| 300 | } |
| 301 | |
| 302 | fortify_function(vsnprintf) int vsnprintf(FAR char *buf, size_t size, |
| 303 | FAR const IPTR char *format, |
| 304 | va_list ap) |
| 305 | { |
| 306 | fortify_assert(size <= fortify_size(buf, 0)); |
| 307 | return __real_vsnprintf(buf, size, format, ap); |
| 308 | } |
| 309 | |
| 310 | fortify_function(vsprintf) int vsprintf(FAR char *dest, |
| 311 | FAR const IPTR char *src, |
no outgoing calls
no test coverage detected