bustath.inc 403 B

12345678910111213141516171819
  1. type
  2. P_ustat = ^_ustat;
  3. _ustat = record
  4. f_tfree : __daddr_t;
  5. f_tinode : __ino_t;
  6. f_fname : array[0..5] of char;
  7. f_fpack : array[0..5] of char;
  8. end;
  9. { ---------------------------------------------------------------------
  10. Borland compatibility types
  11. ---------------------------------------------------------------------}
  12. Type
  13. TUStat = _ustat;
  14. PUStat = ^TUStat;