summaryrefslogtreecommitdiff
path: root/packages/libc/src/bustath.inc
blob: 02787f6713f69beb4825a4994e334d9af19c722b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

type
   P_ustat = ^_ustat;
   _ustat = record
     f_tfree : __daddr_t;
     f_tinode : __ino_t;
     f_fname : array[0..5] of char;
     f_fpack : array[0..5] of char;
   end;



{ ---------------------------------------------------------------------
    Borland compatibility types
  ---------------------------------------------------------------------}

Type
  TUStat = _ustat;
  PUStat = ^TUStat;