ack/lang/cem/libcc/gen/ctime.c
1991-10-04 14:06:34 +00:00

13 lines
163 B
C

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