V7M/src/libc/stdio/printf.c

Compare this file to the similar file:
Show the results in this format:

#include	<stdio.h>

printf(fmt, args)
char *fmt;
{
	_doprnt(fmt, &args, stdout);
	return(ferror(stdout)? EOF: 0);
}