diff options
author | escoffon <escoffon> | 1998-08-04 11:48:17 (GMT) |
---|---|---|
committer | escoffon <escoffon> | 1998-08-04 11:48:17 (GMT) |
commit | 7b465e4732fc0771f3cc42ceb19add6a7c58ecc6 (patch) | |
tree | 4301b600097897620ed3616978d20db6d0889a37 /generic/tclMain.c | |
parent | 75fb0019552a40e8411a48baff309b47141c4aa5 (diff) | |
download | tcl-7b465e4732fc0771f3cc42ceb19add6a7c58ecc6.zip tcl-7b465e4732fc0771f3cc42ceb19add6a7c58ecc6.tar.gz tcl-7b465e4732fc0771f3cc42ceb19add6a7c58ecc6.tar.bz2 |
EXPORT is now TCL_STORAGE_CLASS
Diffstat (limited to 'generic/tclMain.c')
-rw-r--r-- | generic/tclMain.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclMain.c b/generic/tclMain.c index 15a4e0f..a18e11c 100644 --- a/generic/tclMain.c +++ b/generic/tclMain.c @@ -15,8 +15,8 @@ #include "tcl.h" #include "tclInt.h" -# undef EXPORT -# define EXPORT DLLEXPORT +# undef TCL_STORAGE_CLASS +# define TCL_STORAGE_CLASS DLLEXPORT /* * The following code ensures that tclLink.c is linked whenever |