xref: /original-bsd/lib/libc/stdio/printf.c (revision 7a8f01dc)
1 /*
2  * Copyright (c) 1987 Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  */
7 
8 #if defined(LIBC_SCCS) && !defined(lint)
9 static char sccsid[] = "@(#)printf.c	5.5 (Berkeley) 06/01/90";
10 #endif /* LIBC_SCCS and not lint */
11 
12 #include <stdio.h>
13 
14 printf(fmt, args)
15 	char *fmt;
16 	int args;
17 {
18 	int len;
19 
20 	len = _doprnt(fmt, &args, stdout);
21 	return(ferror(stdout) ? EOF : len);
22 }
23