make rresvport always quiet, rcmd do perror on failure;
[unix-history] / usr / src / lib / libc / stdio / printf.c
CommitLineData
b8f253e8
KM
1#ifndef lint
2static char sccsid[] = "@(#)printf.c 5.1 (Berkeley) %G%";
3#endif not lint
4
842c3449
BJ
5#include <stdio.h>
6
7printf(fmt, args)
8char *fmt;
9{
10 _doprnt(fmt, &args, stdout);
11 return(ferror(stdout)? EOF: 0);
12}