ack/lang/cem/libcc/gen/ctime.c

12 lines
148 B
C
Raw Normal View History

1987-01-27 15:57:55 +00:00
#include <time.h>
extern struct tm *localtime();
extern char *asctime();
char *
ctime(clock)
long *clock;
{
return asctime(localtime(clock));
}