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

13 lines
159 B
C

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