diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-12-21 10:13:37 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-12-21 10:13:37 (GMT) |
| commit | 2951fec86bc93ecddf4fd9cdb697df49992879cc (patch) | |
| tree | edbc91ee6b8cec5968ef78ebc501937c02d79a5d /unix/tclUnixNotfy.c | |
| parent | d07793f49c40187467711bf8dc929228d7b1c940 (diff) | |
| parent | 13bc69a8a43c72889340638705bd432fae89352f (diff) | |
| download | tcl-2951fec86bc93ecddf4fd9cdb697df49992879cc.zip tcl-2951fec86bc93ecddf4fd9cdb697df49992879cc.tar.gz tcl-2951fec86bc93ecddf4fd9cdb697df49992879cc.tar.bz2 | |
remove unnecessary struct names, which only pollute the "struct" namespace for the compiler.
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 b87af1b..5c03b79 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; |
