FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/vprintf.c @ 74:8138a6380ae3
pirexplore: attempt to play with SPCA552E
| author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> | 
|---|---|
| date | Sat, 27 Jul 2013 07:30:08 +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)); }
