1*22139Smckusick #ifndef lint 2*22139Smckusick static char sccsid[] = "@(#)printf.c 5.1 (Berkeley) 06/05/85"; 3*22139Smckusick #endif not lint 4*22139Smckusick 52025Swnj #include <stdio.h> 62025Swnj 72025Swnj printf(fmt, args) 82025Swnj char *fmt; 92025Swnj { 102025Swnj _doprnt(fmt, &args, stdout); 112025Swnj return(ferror(stdout)? EOF: 0); 122025Swnj } 13