diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-11-15 11:48:05 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-11-15 11:48:05 (GMT) |
commit | 0e8c0bebc1adffa78100e1740398a43860a2d13d (patch) | |
tree | d44984046a6266997c88557bb2563ad347cd9562 /generic/tclIntPlatDecls.h | |
parent | 9ae0d652824688e3ac54ef7d4df854cbedbefe72 (diff) | |
download | tcl-0e8c0bebc1adffa78100e1740398a43860a2d13d.zip tcl-0e8c0bebc1adffa78100e1740398a43860a2d13d.tar.gz tcl-0e8c0bebc1adffa78100e1740398a43860a2d13d.tar.bz2 |
Simplification: don't declare struct types that are never used.
Diffstat (limited to 'generic/tclIntPlatDecls.h')
-rw-r--r-- | generic/tclIntPlatDecls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclIntPlatDecls.h b/generic/tclIntPlatDecls.h index 16d8896..f265e7e 100644 --- a/generic/tclIntPlatDecls.h +++ b/generic/tclIntPlatDecls.h @@ -246,7 +246,7 @@ EXTERN int TclWinCPUID(unsigned int index, unsigned int *regs); typedef struct TclIntPlatStubs { int magic; - const struct TclIntPlatStubHooks *hooks; + void *hooks; #if !defined(__WIN32__) && !defined(__CYGWIN__) && !defined(MAC_OSX_TCL) /* UNIX */ void (*tclGetAndDetachPids) (Tcl_Interp *interp, Tcl_Channel chan); /* 0 */ |