Files
Arquivotheca.SunOS-4.1.3/lib/libc/stdio/sys5/vprintf.c
seta75D 2e8a93c394 Init
2021-10-11 18:20:23 -03:00

36 lines
629 B
C

#if !defined(lint) && defined(SCCSIDS)
static char sccsid[] = "@(#)vprintf.c 1.1 92/07/30 SMI"; /* from S5R2 1.1 */
#endif
/*LINTLIBRARY*/
#include <stdio.h>
#include <varargs.h>
#include <errno.h>
extern int _doprnt();
/*VARARGS1*/
int
vprintf(format, ap)
char *format;
va_list ap;
{
register int count;
if (!(stdout->_flag & _IOWRT)) {
/* if no write flag */
if (stdout->_flag & _IORW) {
/* if ok, cause read-write */
stdout->_flag |= _IOWRT;
} else {
/* else error */
#ifdef POSIX
errno = EBADF;
#endif
return EOF;
}
}
count = _doprnt(format, ap, stdout);
return(ferror(stdout)? EOF: count);
}