2.9BSD/usr/src/lib/c/stdio/printf.c

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

/*	@(#)printf.c	2.1	SCCS id keyword	*/
#include	<stdio.h>

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