diff options
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclCompile.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index cfffc37..c950096 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCompile.h,v 1.50 2004/11/03 00:11:39 davygrvy Exp $ + * RCS: @(#) $Id: tclCompile.h,v 1.51 2004/11/03 21:20:30 davygrvy Exp $ */ #ifndef _TCLCOMPILATION @@ -1101,7 +1101,4 @@ MODULE_SCOPE int TclWordKnownAtCompileTime _ANSI_ARGS_(( #define TclMin(i, j) ((((int) i) < ((int) j))? (i) : (j)) #define TclMax(i, j) ((((int) i) > ((int) j))? (i) : (j)) -# undef TCL_STORAGE_CLASS -# define TCL_STORAGE_CLASS DLLIMPORT - #endif /* _TCLCOMPILATION */ |