summaryrefslogtreecommitdiffstats
path: root/generic/tclRegexp.h
diff options
context:
space:
mode:
authorescoffon <escoffon>1998-08-04 11:53:13 (GMT)
committerescoffon <escoffon>1998-08-04 11:53:13 (GMT)
commite04a81a2d7da55e3afebd4fec7929d8a68a197e7 (patch)
tree090e5f16668eabbd7db73b22c64166805ea36425 /generic/tclRegexp.h
parent36e80da1975e7b338e6b25489249183cab3ee8ed (diff)
downloadtcl-e04a81a2d7da55e3afebd4fec7929d8a68a197e7.zip
tcl-e04a81a2d7da55e3afebd4fec7929d8a68a197e7.tar.gz
tcl-e04a81a2d7da55e3afebd4fec7929d8a68a197e7.tar.bz2
EXPORT is now TCL_STORAGE_CLASS
Diffstat (limited to 'generic/tclRegexp.h')
-rw-r--r--generic/tclRegexp.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tclRegexp.h b/generic/tclRegexp.h
index dc7696f..df31855 100644
--- a/generic/tclRegexp.h
+++ b/generic/tclRegexp.h
@@ -15,8 +15,8 @@
#endif
#ifdef BUILD_tcl
-# undef EXPORT
-# define EXPORT DLLEXPORT
+# undef TCL_STORAGE_CLASS
+# define TCL_STORAGE_CLASS DLLEXPORT
#endif
/*
@@ -42,7 +42,7 @@ EXTERN void TclRegSub _ANSI_ARGS_((regexp *prog, char *source, char *dest));
EXTERN void TclRegError _ANSI_ARGS_((char *msg));
EXTERN char *TclGetRegError _ANSI_ARGS_((void));
-#undef EXPORT
-#define EXPORT DLLIMPORT
+# undef TCL_STORAGE_CLASS
+# define TCL_STORAGE_CLASS DLLIMPORT
#endif /* REGEXP */