ack/lang/cem/libcc/gen/ctime.c
1987-07-22 09:12:47 +00:00

17 lines
214 B
C

/* $Header$ */
#ifdef __BSD4_2
#include <sys/time.h>
#else
#include <time.h>
#endif
extern struct tm *localtime();
extern char *asctime();
char *
ctime(clock)
long *clock;
{
return asctime(localtime(clock));
}