1 #ifndef lint 2 static char sccsid[] = "@(#)printf.c 5.1 (Berkeley) 06/05/85"; 3 #endif not lint 4 5 #include <stdio.h> 6 7 printf(fmt, args) 8 char *fmt; 9 { 10 _doprnt(fmt, &args, stdout); 11 return(ferror(stdout)? EOF: 0); 12 } 13