gettod.c
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /* 
  2.  * gettod.c --
  3.  *
  4.  * This file provides the gettimeofday function on systems
  5.  * that only have the System V ftime function.
  6.  *
  7.  * Copyright (c) 1995 Sun Microsystems, Inc.
  8.  *
  9.  * See the file "license.terms" for information on usage and redistribution
  10.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  11.  *
  12.  * RCS: @(#) $Id: gettod.c,v 1.2 1998/09/14 18:39:44 stanton Exp $
  13.  */
  14. #include "tcl.h"
  15. #include "tclPort.h"
  16. #include <sys/timeb.h>
  17. #undef timezone
  18. int
  19. gettimeofday(tp, tz)
  20. struct timeval *tp;
  21. struct timezone *tz;
  22. {
  23.     struct timeb t;
  24.     ftime(&t);
  25.     tp->tv_sec = t.time;
  26.     tp->tv_usec = t. millitm * 1000;
  27.     return 0;
  28. }