FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/vprintf.c @ 187:f5f8776f7c66
rvinterf: added -s option for changing the local socket pathname
| author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
|---|---|
| date | Sun, 24 Nov 2013 23:25:59 +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)); }
