Changeset 3dbe2d1f in mainline for uspace/libc/generic/io/vsprintf.c
- Timestamp:
- 2007-04-07T18:00:18Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2a98e58
- Parents:
- 5b303ba
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/libc/generic/io/vsprintf.c
r5b303ba r3dbe2d1f 45 45 int vsprintf(char *str, const char *fmt, va_list ap) 46 46 { 47 return vsnprintf(str, (size_t) -1, fmt, ap);47 return vsnprintf(str, (size_t) - 1, fmt, ap); 48 48 } 49 49
Note:
See TracChangeset
for help on using the changeset viewer.