home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / swtools / mipsABI / examples / before / gettime.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-02  |  164 b   |  15 lines

  1. /*
  2.  * illustrates the use of the gettimeofday routine
  3.  *
  4.  */
  5.  
  6. #include <sys/time.h>
  7.  
  8. main ()
  9. {
  10.     struct timeval tv;
  11.     struct timezone tz;
  12.  
  13.     gettimeofday(&tv, &tz);
  14. }
  15.