xref: /csrg-svn/lib/libc/stdio/printf.c (revision 2025)
1 /* @(#)printf.c	4.1 (Berkeley) 12/21/80 */
2 #include	<stdio.h>
3 
4 printf(fmt, args)
5 char *fmt;
6 {
7 	_doprnt(fmt, &args, stdout);
8 	return(ferror(stdout)? EOF: 0);
9 }
10