home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-19.28-src.tgz / tar.out / fsf / emacs / unixlib / src / time.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  202b  |  13 lines

  1. #include "amiga.h"
  2. #include "timeconvert.h"
  3.  
  4. time_t time(time_t *clock)
  5. {
  6.   struct timeval now;
  7.  
  8.   if (_gettime(&now) < 0) return -1;
  9.   if (clock) *clock = now.tv_secs;
  10.  
  11.   return (time_t)now.tv_secs;
  12. }
  13.