at_wini also needs a pci_reserve() for the pci compatability device, if
[minix3.git] / lib / ansi / ctime.c
blob9f01f50ce86bd0741f9cdeb7dfd6b678bbbe85c7
1 /*
2 * ctime - convers the calendar time to a string
3 */
4 /* $Header$ */
6 #include <time.h>
8 char *
9 ctime(const time_t *timer)
11 return asctime(localtime(timer));