summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixNotfy.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2016-06-30 13:16:44 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2016-06-30 13:16:44 (GMT)
commitc1ce97106f2bcbbcad391621a3617e14a7648052 (patch)
tree5c0b46ceadbe2eff89d3297cc3b0b75ce3643b25 /unix/tclUnixNotfy.c
parentc8212c36e91c536433c5a43b8a66ddb19c20d723 (diff)
downloadtcl-c1ce97106f2bcbbcad391621a3617e14a7648052.zip
tcl-c1ce97106f2bcbbcad391621a3617e14a7648052.tar.gz
tcl-c1ce97106f2bcbbcad391621a3617e14a7648052.tar.bz2
Simplify use of "struct" keyword in many places.
Diffstat (limited to 'unix/tclUnixNotfy.c')
-rw-r--r--unix/tclUnixNotfy.c4
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;