printf.c
上传用户:super_houu
上传日期:2008-09-21
资源大小:4099k
文件大小:1k
源码类别:

DVD

开发平台:

Others

  1. /*
  2.  *      Paradigm C/C++ Run-Time Library - Version 5.0
  3.  *
  4.  *      Copyright (c) 1998 Paradigm Systems.  All rights reserved.
  5.  *      Portions Copyright (c) 1996 Borland International.
  6.  *
  7.  *      $Revision: 4 $
  8.  *      $Workfile: printf.c $
  9.  *
  10.  * function(s)
  11.  *        printf - send formatted output to stdout
  12.  */
  13. #include "Config.h" // Global Configuration - do not remove!
  14. #include <stdio.h>
  15. #include "ServicesInclude_printf.h"
  16. #include "ServicesInclude_stdio.h"
  17. /*---------------------------------------------------------------------*
  18. Name            printf - send formatted output to stdout
  19. Usage           int printf(const char *format, ...);
  20. Prototype in    stdio.h
  21. Description     sends formatted output to stdout
  22. Return value    the number of bytes output.  In the event of an
  23.                 error, printf returns EOF.
  24. *---------------------------------------------------------------------*/
  25. #pragma codeseg _TEXT "CODE"
  26. int _RTLENTRY _FARFUNC printf(const char *fmt, ...)
  27. {
  28.   return( __I49vprinter (fmt, (void _ss *) _va_ptr) );
  29. }