home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 387b.lha / dice_v2.02 / lib / stdio / vprintf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-30  |  259 b   |  22 lines

  1.  
  2. /*
  3.  *  VPRINTF.C
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #include <stdarg.h>
  9. #include <stdio.h>
  10.  
  11. int
  12. vprintf(ctl, va)
  13. const char *ctl;
  14. va_list va;
  15. {
  16.     int error;
  17.  
  18.     error = _pfmt(ctl, va, fwrite, stdout);
  19.     return(error);
  20. }
  21.  
  22.