summaryrefslogtreecommitdiff
path: root/packages/libc/src/sgttyh.inc
blob: 35c2d4e34f8bdb76109d8a5dd06bacbfb014af7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

type
   Psgttyb = ^sgttyb;
   sgttyb = record
       {undefined structure}
     end;


function gtty(__fd:longint; __params:Psgttyb):longint;cdecl;external clib name 'gtty';
function stty(__fd:longint; __params:Psgttyb):longint;cdecl;external clib name 'stty';

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

Type
  TSgTTyB = sgttyb;