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 >
Wrap
C/C++ Source or Header
|
1996-09-28
|
202b
|
13 lines
#include "amiga.h"
#include "timeconvert.h"
time_t time(time_t *clock)
{
struct timeval now;
if (_gettime(&now) < 0) return -1;
if (clock) *clock = now.tv_secs;
return (time_t)now.tv_secs;
}