diff options
| author | davygrvy@pobox.com <davygrvy> | 2001-09-03 01:28:42 (GMT) |
|---|---|---|
| committer | davygrvy@pobox.com <davygrvy> | 2001-09-03 01:28:42 (GMT) |
| commit | 69eb995d401cf3d640ab5a3099fac648c589707b (patch) | |
| tree | 22aa62d96f9ccc14c5634f1b4faf8416b6c6f436 | |
| parent | 92d0d470b0e0d1387f9e82bfa9f2943a078f2fa1 (diff) | |
| download | tcl-69eb995d401cf3d640ab5a3099fac648c589707b.zip tcl-69eb995d401cf3d640ab5a3099fac648c589707b.tar.gz tcl-69eb995d401cf3d640ab5a3099fac648c589707b.tar.bz2 | |
* win/tclWinThrd.c: Moved FinalizeConditionEvent() proto to within
the main #ifdef TCL_THREADS block to avoid mingw warning about it
being there but unused.
| -rw-r--r-- | win/tclWinThrd.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/win/tclWinThrd.c b/win/tclWinThrd.c index 3877729..dd82617 100644 --- a/win/tclWinThrd.c +++ b/win/tclWinThrd.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinThrd.c,v 1.15 2001/09/03 00:37:45 davygrvy Exp $ + * RCS: @(#) $Id: tclWinThrd.c,v 1.16 2001/09/03 01:28:42 davygrvy Exp $ */ #include "tclWinInt.h" @@ -102,8 +102,6 @@ typedef struct WinCondition { struct ThreadSpecificData *lastPtr; } WinCondition; -static void FinalizeConditionEvent(ClientData data); - /* *---------------------------------------------------------------------- @@ -377,6 +375,10 @@ Tcl_GetAllocMutex() #ifdef TCL_THREADS + +/* locally used prototype */ +static void FinalizeConditionEvent(ClientData data); + /* *---------------------------------------------------------------------- * |
