xref: /inferno-os/utils/iar/Posix.c (revision 74a4d8c26dd3c1e9febcb717cfd6cb6512991a7a)
1 #include	<lib9.h>
2 
3 char *
myctime(long x)4 myctime(long x)
5 {
6 	time_t t;
7 
8 	t = x;
9 	return ctime(&t);
10 }
11