FreeCalypso > hg > freecalypso-tools
view target-utils/libprintf/printf.c @ 18:d9307880f59f
doc/RVTMUX: reference to TI's tmffs.c source updated for the repository split
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 19 Oct 2016 01:51:05 +0000 |
parents | e7502631a0f9 |
children |
line wrap: on
line source
#include <stdarg.h> extern void putchar(); int printf(char *fmt, ...) { va_list ap; int len; va_start(ap, fmt); len = _doprnt(fmt, ap, &putchar); va_end(ap); return(len); }