FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/vprintf.c @ 898:cc9d97d0e911
gsm-fw: DWNLD (static DSP patch) and L1_DYN_DSP_DWNLD moved to config mechanism
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Sun, 05 Jul 2015 02:41:39 +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)); }