home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / APPS / elvis_1.4.tar.Z / elvis_1.4.tar / osk.h < prev    next >
C/C++ Source or Header  |  1990-12-06  |  377b  |  27 lines

  1. /*
  2.  * OS9 stat : @(#)stat.h    1.2 87/19/12
  3.  */
  4. /* @(#)stat.h    6.1 */
  5. /*
  6.  * Structure of the result of stat
  7.  */
  8.  
  9. #ifndef CLK_TCK
  10. #include <time.h>
  11. #endif
  12.  
  13. struct    stat
  14. {
  15.     int    st_dev;
  16.     long    st_ino;
  17.     unsigned short    st_mode;
  18.     unsigned short    st_nlink;
  19.     unsigned short    st_uid;
  20.     unsigned short    st_gid;
  21.     int    st_rdev;
  22.     long    st_size;
  23.     time_t    st_atime;
  24.     time_t    st_mtime;
  25.     time_t    st_ctime;
  26. };
  27.