V7M/src/libc/stdio/fprintf.c

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

#include	<stdio.h>

fprintf(iop, fmt, args)
FILE *iop;
char *fmt;
{
	_doprnt(fmt, &args, iop);
	return(ferror(iop)? EOF: 0);
}