difftime.c
上传用户:zm130024
上传日期:2007-01-04
资源大小:432k
文件大小:0k
源码类别:

代理服务器

开发平台:

Unix_Linux

  1. /* $Id: difftime.c,v 1.3 1999/05/13 16:35:55 karls Exp $ */
  2. #ifdef HAVE_CONFIG_H
  3. #include "autoconf.h"
  4. #endif  /* HAVE_CONFIG_H */
  5. #include "common.h"
  6. #if !HAVE_DIFFTIME
  7. double
  8. difftime(t1, t0)
  9. long t1;
  10. long t0;
  11. {
  12. return (double)(t1 - t0);
  13. }
  14. #else
  15. static void avoid_error __P((void));
  16. static void avoid_error()
  17. {
  18. avoid_error();
  19. }
  20. #endif  /* !HAVE_DIFFTIME */