repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
at_wini also needs a pci_reserve() for the pci compatability device, if
[minix3.git]
/
lib
/
ansi
/
ctime.c
blob
9f01f50ce86bd0741f9cdeb7dfd6b678bbbe85c7
1
/*
2
* ctime - convers the calendar time to a string
3
*/
4
/* $Header$ */
5
6
#include <time.h>
7
8
char
*
9
ctime
(
const time_t
*
timer
)
10
{
11
return
asctime
(
localtime
(
timer
));
12
}