FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/vprintf.c @ 1028:71bbddbcc6a1
fc-shell: tch record implemented
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 31 May 2016 00:43:00 +0000 |
parents | 40f607bb0a2c |
children |
line wrap: on
line source
#include <stdarg.h> extern void putchar(); int vprintf(fmt, ap) char *fmt; va_list ap; { return(_doprnt(fmt, ap, &putchar)); }