diff options
author | redman <redman> | 1999-07-02 22:08:28 (GMT) |
---|---|---|
committer | redman <redman> | 1999-07-02 22:08:28 (GMT) |
commit | 01e565256ce060d05b1cf427b3354f42d89b91e9 (patch) | |
tree | 3c3380401532d06c2010c81a39c5debba0a761b6 /win/tclWinNotify.c | |
parent | cd0cbda2bccf9d04fd23795065755fb079d328ca (diff) | |
download | tcl-01e565256ce060d05b1cf427b3354f42d89b91e9.zip tcl-01e565256ce060d05b1cf427b3354f42d89b91e9.tar.gz tcl-01e565256ce060d05b1cf427b3354f42d89b91e9.tar.bz2 |
Fix missing declaration of tclStubs
Diffstat (limited to 'win/tclWinNotify.c')
-rw-r--r-- | win/tclWinNotify.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win/tclWinNotify.c b/win/tclWinNotify.c index a3d06f4..932f86c 100644 --- a/win/tclWinNotify.c +++ b/win/tclWinNotify.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinNotify.c,v 1.4 1999/07/02 06:05:39 welch Exp $ + * RCS: @(#) $Id: tclWinNotify.c,v 1.5 1999/07/02 22:08:28 redman Exp $ */ #include "tclWinInt.h" @@ -47,6 +47,7 @@ typedef struct ThreadSpecificData { static Tcl_ThreadDataKey dataKey; +extern TclStubs tclStubs; /* * The following static indicates the number of threads that have * initialized notifiers. It controls the lifetime of the TclNotifier |