home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Carousel
/
CAROUSEL.cdr
/
mactosh
/
unix
/
uw_term.sha
/
openpty.h
< prev
next >
Wrap
C/C++ Source or Header
|
1985-11-12
|
308b
|
12 lines
/*
* This file defines the "ptydesc" structure which is returned
* by the routine "openpty".
*/
struct ptydesc {
int pt_pfd; /* file descriptor of master side */
int pt_tfd; /* file descriptor of slave side */
char *pt_pname; /* master device name */
char *pt_tname; /* slave device name */
};