diff options
author | jan.nijtmans <jan.nijtmans@noemail.net> | 2016-06-30 13:16:44 (GMT) |
---|---|---|
committer | jan.nijtmans <jan.nijtmans@noemail.net> | 2016-06-30 13:16:44 (GMT) |
commit | 5878c85066c73bf6126094553b121b87576faa77 (patch) | |
tree | ef2e8180deb53a92c9aec9599b571e7fe22fb38d /unix/tclUnixChan.c | |
parent | d120ae3daea1e8fe6a57a7156a82d524531530ec (diff) | |
download | tcl-5878c85066c73bf6126094553b121b87576faa77.zip tcl-5878c85066c73bf6126094553b121b87576faa77.tar.gz tcl-5878c85066c73bf6126094553b121b87576faa77.tar.bz2 |
Simplify use of "struct" keyword in many places.
FossilOrigin-Name: 2e6ea5716fc508fe2400279990977782f395aadf
Diffstat (limited to 'unix/tclUnixChan.c')
-rw-r--r-- | unix/tclUnixChan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixChan.c b/unix/tclUnixChan.c index b4b2739..6418f48 100644 --- a/unix/tclUnixChan.c +++ b/unix/tclUnixChan.c @@ -61,7 +61,7 @@ * This structure describes per-instance state of a file based channel. */ -typedef struct FileState { +typedef struct { Tcl_Channel channel; /* Channel associated with this file. */ int fd; /* File handle. */ int validMask; /* OR'ed combination of TCL_READABLE, @@ -76,7 +76,7 @@ typedef struct FileState { * a platform-independant manner. */ -typedef struct TtyAttrs { +typedef struct { int baud; int parity; int data; |