FreeCalypso > hg > freecalypso-sw
view loadagent/libprintf/vprintf.c @ 10:e2e80a09338e
fc-sertool actually works; output from loadagent is visible!
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Wed, 01 May 2013 03:41:42 +0000 |
parents | 5c7b3d5d5702 |
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)); }