view target-utils/libprintf/printf.c @ 91:3641e44f044e

nuc-fw config: export_to_*(): catch multiple exports of the same setting
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 25 Aug 2013 20:13:24 +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);
}