ack/lang/cem/libcc/mon/time.c
1994-06-24 14:02:31 +00:00

12 lines
184 B
C

/* $Id$ */
#include <sys/types.h>
#include <sys/timeb.h>
time_t
time(timpt) time_t *timpt ; {
struct timeb buf ;
ftime(&buf) ;
if ( timpt ) *timpt= buf.time ;
return buf.time ;
}