FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/vprintf.c @ 269:6e7410f7975c
gsm-fw feature pirhack-ffs: require explicit selection of sectors to be used
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Thu, 06 Feb 2014 03:09:39 +0000 (2014-02-06) |
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)); }