home *** CD-ROM | disk | FTP | other *** search
/ Dream 41 / Amiga_Dream_41.iso / Amiga / Programmation / c / PDC.lha / PDC / bin.lzh / sample / date.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-04-06  |  127 b   |  12 lines

  1. #include <time.h>
  2.  
  3. main()
  4. {
  5.     time_t t;
  6.     char *ts;
  7.  
  8.     t = time(0L);
  9.     ts = ctime(&t);
  10.     write(1, ts, strlen(ts));
  11. }
  12.