home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / ansi / time / time.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-11  |  268 b   |  16 lines

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <libc/stubs.h>
  3. #include <time.h>
  4.  
  5. time_t
  6. time(time_t *t)
  7. {
  8.   struct timeval tt;
  9.  
  10.   if (gettimeofday(&tt, 0) < 0)
  11.     return(-1);
  12.   if (t)
  13.     *t = tt.tv_sec;
  14.   return tt.tv_sec;
  15. }
  16.