diff options
author | rjohnson <rjohnson> | 1998-03-26 14:45:59 (GMT) |
---|---|---|
committer | rjohnson <rjohnson> | 1998-03-26 14:45:59 (GMT) |
commit | 2b5738da524e944cda39e24c0a87b745a43bd8c3 (patch) | |
tree | 6e8c9473978f6dab66c601e911721a7bd9d70b1b /mac/tclMacMSLPrefix.h | |
parent | c6a259aeeca4814a97cf6694814c63e74e4e18fa (diff) | |
download | tcl-2b5738da524e944cda39e24c0a87b745a43bd8c3.zip tcl-2b5738da524e944cda39e24c0a87b745a43bd8c3.tar.gz tcl-2b5738da524e944cda39e24c0a87b745a43bd8c3.tar.bz2 |
Initial revision
Diffstat (limited to 'mac/tclMacMSLPrefix.h')
-rw-r--r-- | mac/tclMacMSLPrefix.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/mac/tclMacMSLPrefix.h b/mac/tclMacMSLPrefix.h new file mode 100644 index 0000000..ce569da --- /dev/null +++ b/mac/tclMacMSLPrefix.h @@ -0,0 +1,24 @@ +/* + * tclMacMSLPrefix.h -- + * + * A wrapper for the MSL ansi_prefix.mac.h file. This just turns export on + * after including the MSL prefix file, so we can export symbols from the MSL + * and through the Tcl shared libraries + * + * + * Copyright (c) 1997 Sun Microsystems, Inc. + * + * See the file "license.terms" for information on usage and redistribution + * of this file, and for a DISCLAIMER OF ALL WARRANTIES. + * + * SCCS: @(#) tclMac.h 1.2 97/03/18 10:58:49 + */ + +#include <ansi_prefix.mac.h> +/* + * "export" is a MetroWerks specific pragma. It flags the linker that + * any symbols that are defined when this pragma is on will be exported + * to shared libraries that link with this library. + */ + +#pragma export on |