home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / EMXLIB8F.ZIP / EMX / LIB / IO / VFPRINTF.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-02  |  318 b   |  15 lines

  1. /* vfprintf.c (emx+gcc) -- Copyright (c) 1990-1993 by Eberhard Mattes */
  2.  
  3. #include <sys/emx.h>
  4. #include <stdio.h>
  5.  
  6. int vfprintf (FILE *stream, const char *format, va_list arg_ptr)
  7. {
  8.   int result;
  9.  
  10.   _tmpbuf (stream);
  11.   result = _output (stream, format, arg_ptr);
  12.   _endbuf (stream);
  13.   return (result);
  14. }
  15.