ack/lang/cem/libcc/gen/ctime.c
1987-07-17 09:38:18 +00:00

17 lines
213 B
C

/* $Header$ */
#ifdef __BSD_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));
}