Initial revision
This commit is contained in:
19
lang/cem/libcc.ansi/time/time.c
Normal file
19
lang/cem/libcc.ansi/time/time.c
Normal file
@@ -0,0 +1,19 @@
|
||||
/*
|
||||
* time - return the current calendar time (seconds since jan 1, 1970)
|
||||
*/
|
||||
/* $Header$ */
|
||||
|
||||
#include <time.h>
|
||||
#include <sys/time.h>
|
||||
|
||||
time_t
|
||||
time(time_t *timer)
|
||||
{
|
||||
struct timeval tv;
|
||||
struct timezone tz;
|
||||
|
||||
gettimeofday(&tv, &tz);
|
||||
|
||||
if (timer) *timer = tv.tv_sec;
|
||||
return tv.tv_sec;
|
||||
}
|
||||
Reference in New Issue
Block a user