home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / unixlib / !UnixLib / test / c / ctimetest < prev    next >
Encoding:
Text File  |  1994-03-08  |  122 b   |  13 lines

  1. #include <stdio.h>
  2. #include <time.h>
  3.  
  4. int
  5. main ()
  6. {
  7.   time_t t;
  8.  
  9.   time (&t);
  10.   fputs (ctime (&t), stdout);
  11.   return 0;
  12. }
  13.