/* @(#)printf.c 2.1 SCCS id keyword */ #include printf(fmt, args) char *fmt; { _doprnt(fmt, &args, stdout); return(ferror(stdout)? EOF: 0); }