view target-utils/libprintf/vprintf.c @ 513:383abdbc5d35

gsm-fw/bsp/armio.c: Compal configuration added
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Wed, 02 Jul 2014 03:40:42 +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));
}