home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / GCC / GERLIB_DEV08B.LHA / gerlib / amiga / normal / time.c < prev   
Encoding:
C/C++ Source or Header  |  1993-12-12  |  186 b   |  16 lines

  1. #include <sys/time.h>
  2.  
  3. time_t
  4. time(t)
  5.     time_t *t;
  6. {
  7.     struct timeval tt;
  8.  
  9.     if (gettimeofday(&tt, (struct timezone *)0) < 0)
  10.         return(-1);
  11.     if (t)
  12.         *t = tt.tv_sec;
  13.     return(tt.tv_sec);
  14. }
  15.  
  16.