1 #include <lib9.h> 2 3 char * 4 myctime(long x) 5 { 6 time_t t; 7 8 t = x; 9 return ctime(&t); 10 } 11