ack/lang/cem/libcc.ansi/time/ctime.c

13 lines
164 B
C
Raw Normal View History

1989-06-12 15:22:14 +00:00
/*
* ctime - convers the calendar time to a string
*/
/* $Header$ */
#include <time.h>
char *
ctime(const time_t *timer)
{
return asctime(localtime(timer));
}