minix/lib/ansi/ctime.c

13 lines
164 B
C
Raw Normal View History

2005-04-21 16:53:53 +02:00
/*
* ctime - convers the calendar time to a string
*/
/* $Header$ */
#include <time.h>
char *
ctime(const time_t *timer)
{
return asctime(localtime(timer));
}