Nt.c 85 B

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