debug.c
上传用户:xu_441
上传日期:2007-01-04
资源大小:1640k
文件大小:1k
源码类别:

Email客户端

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (c) 1999 Sendmail, Inc. and its suppliers.
  3.  * All rights reserved.
  4.  *
  5.  * By using this file, you agree to the terms and conditions set
  6.  * forth in the LICENSE file which can be found at the top level of
  7.  * the sendmail distribution.
  8.  *
  9.  */
  10. #ifndef lint
  11. static char id[] = "@(#)$Id: debug.c,v 8.2 1999/07/26 04:04:09 gshapiro Exp $";
  12. #endif /* ! lint */
  13. #include <sendmail.h>
  14. u_char tTdvect[100]; /* trace vector */
  15. #if _FFR_DPRINTF_
  16. void
  17. /*VARARGS1*/
  18. #ifdef __STDC__
  19. dprintf(const char *fmt, ...)
  20. #else /* __STDC__ */
  21. dprintf(fmt, va_alist)
  22. const char *fmt;
  23. va_dcl
  24. #endif /* __STDC__ */
  25. {
  26. VA_LOCAL_DECL;
  27. (void) vfprintf(stdout, fmt, ap);
  28. }
  29. int
  30. dflush()
  31. {
  32. return fflush(stdout);
  33. }
  34. #endif /* _FFR_DPRINTF_ */