view target-utils/libprintf/printf.c @ 662:a712c95b60c1

gsm-fw/include/condat: import of TI's g23m/condat/com/include custom.h, pwr.h and rtc.h taken from TCS211 version, the others are the versions from LoCosto
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 28 Sep 2014 01:14:48 +0000
parents 40f607bb0a2c
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);
}