/*
 *			p r i n t . c
 *
 * Formatted output to the console
 */

/*)LIBRARY
*/

#ifdef	DOCUMENTATION

title	printf	Formatted Output Conversion
index		Formatted output conversion

internal

synopsis
	.s.nf
	printf(format, arg1, ...)
	char		*format;
	.s.f
 Description

	printf() converts, formats, and prints its arguments, under control
	of the first argument, writing output to the console.
	
Bugs

#endif


printf(fmt, args)
char	*fmt;
{
	_doprnt(fmt, &args, 0);
}
