date and time created 80/12/21 16:51:04 by wnj
[unix-history] / usr / src / lib / libc / stdio / printf.c
CommitLineData
842c3449
BJ
1/* @(#)printf.c 4.1 (Berkeley) %G% */
2#include <stdio.h>
3
4printf(fmt, args)
5char *fmt;
6{
7 _doprnt(fmt, &args, stdout);
8 return(ferror(stdout)? EOF: 0);
9}