summaryrefslogtreecommitdiff
path: root/lib/vsnprintf.c
Commit message (Collapse)AuthorAgeFilesLines
* BR2979629: vsnprintf: Use nasm_mallocCyrill Gorcunov2010-04-011-7/+5
| | | | | | | There is no nasm_malloc_error helper anymore. Use nasm_error instead. Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
* vsnprintf: Style nitfixCyrill Gorcunov2010-04-011-14/+13
| | | | Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
* Move all the SAA code out of nasmlibH. Peter Anvin2008-06-091-2/+0
| | | | | | Move all the SAA code out of nasmlib; it's not used by anything than nasm itself. Cleaning out the kitchen sink known as nasmlib is a good thing, too.
* Portability fixesH. Peter Anvin2007-10-021-0/+2
| | | | | | | | | Concentrate compiler dependencies to compiler.h; make sure compiler.h is included first in every .c file (since some prototypes may depend on the presence of feature request macros.) Actually use the conditional inclusion of various functions (totally broken in previous releases.)
* lib/vsnprintf.c: correct boundary conditionsH. Peter Anvin2007-09-281-6/+6
| | | | | Correct the boundary conditions in lib/vsnprintf.c; as it was we could have an undetected one-byte overwrite.
* Add substitutes for snprintf() and vsnprintf()H. Peter Anvin2007-09-281-0/+49
To deal with fools^Wpeople trying to keep really old systems alive, create a proper framework for substitution functions, and make it possible to deal with the lack of snprintf/vsnprintf in particular.