view target-utils/libprintf/printf.c @ 243:43642cf7c98c

tiffs: added global option for offset of FFS within the file (new -o)
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Mon, 27 Jan 2014 03:46:11 +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);
}