minix/lib/ansi/ctime.c
2005-04-21 14:53:53 +00:00

13 lines
164 B
C
Executable file

/*
* ctime - convers the calendar time to a string
*/
/* $Header$ */
#include <time.h>
char *
ctime(const time_t *timer)
{
return asctime(localtime(timer));
}