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/tclUnixNotfy.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/tclUnixNotfy.c')
-rw-r--r-- | unix/tclUnixNotfy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixNotfy.c b/unix/tclUnixNotfy.c index 3422089..9f9301f 100644 --- a/unix/tclUnixNotfy.c +++ b/unix/tclUnixNotfy.c @@ -39,7 +39,7 @@ typedef struct FileHandler { * handlers are ready to fire. */ -typedef struct FileHandlerEvent { +typedef struct { Tcl_Event header; /* Information that is standard for all * events. */ int fd; /* File descriptor that is ready. Used to find @@ -54,7 +54,7 @@ typedef struct FileHandlerEvent { * writable, and exception conditions. */ -typedef struct SelectMasks { +typedef struct { fd_set readable; fd_set writable; fd_set exception; |