home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / ansi / stdio / vprintf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-26  |  270 b   |  14 lines

  1. /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
  2. #include <stdio.h>
  3. #include <stdarg.h>
  4. #include <libc/file.h>
  5.  
  6. int
  7. vprintf(const char *fmt, va_list ap)
  8. {
  9.   int len;
  10.  
  11.   len = _doprnt(fmt, ap, stdout);
  12.   return (ferror(stdout) ? EOF : len);
  13. }
  14.