FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/vprintf.c @ 186:faa31a47f102
rvinterf/Makefile: build both rvinterf/lowlevel and rvinterf/etm
| author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
|---|---|
| date | Sun, 24 Nov 2013 23:18:30 +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)); }
