FreeCalypso > hg > freecalypso-tools
view target-utils/libprintf/vprintf.c @ 182:9099a35a705f
manual VCXO calibration code: fc-vcxo-param utility written
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 12 Apr 2017 07:33:38 +0000 |
parents | e7502631a0f9 |
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)); }