summaryrefslogtreecommitdiff
path: root/com32/lib/dprintf.c
Commit message (Collapse)AuthorAgeFilesLines
* dprintf: fix uninitialized pointer; return voidH. Peter Anvin2009-11-191-4/+2
| | | | | | | | Fix an uninitialized pointer bug; return void rather than returning int like normal printfs... if we're depending on the return value of a debugging function we're screwed when debugging is disabled. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
* dprintf: fix dprintf() and vdprintf()H. Peter Anvin2009-11-191-1/+5
| | | | | | | Fix incorrect prototype for vdprintf() used in dprintf(), masked by the non-use of the header file. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
* dprintf: a generic debug-to-serial infrastructureH. Peter Anvin2009-11-191-0/+17
Actually provide real infrastructure for debug-to-serial. Very useful when debugging fullscreen applications, especially under an emulator like Qemu. Signed-off-by: H. Peter Anvin <hpa@zytor.com>