Changes in uspace/lib/posix/src/stdio.c [8f3230e:a35b458] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/src/stdio.c
r8f3230e ra35b458 343 343 int vsprintf(char *s, const char *restrict format, va_list ap) 344 344 { 345 return vsnprintf(s, INT_MAX, format, ap);345 return vsnprintf(s, STR_NO_LIMIT, format, ap); 346 346 } 347 347
Note:
See TracChangeset
for help on using the changeset viewer.