diff options
author | das <das> | 2001-11-23 01:39:42 (GMT) |
---|---|---|
committer | das <das> | 2001-11-23 01:39:42 (GMT) |
commit | 54c5936b6021be7a0d149ce218e7bba30faf984e (patch) | |
tree | 979fa41979efaf22cb7e936f182fc2a2d165e934 /unix/tclMtherr.c | |
parent | 5bf5a16c3a6e83b4297123ae905297ac723f7f81 (diff) | |
download | tcl-54c5936b6021be7a0d149ce218e7bba30faf984e.zip tcl-54c5936b6021be7a0d149ce218e7bba30faf984e.tar.gz tcl-54c5936b6021be7a0d149ce218e7bba30faf984e.tar.bz2 |
*unix/Makefile.in:
*unix/configure.in:
*unix/install-sh:
*unix/mkLinks:
*unix/mkLinks.tcl:
*unix/tclLoadDyld.c:
*unix/tclMtherr.c: Mac OSX support: build system, dynamic code loading
and support for case-insensitive filesystems in mkLinks (patch #435258)
Diffstat (limited to 'unix/tclMtherr.c')
-rw-r--r-- | unix/tclMtherr.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/unix/tclMtherr.c b/unix/tclMtherr.c index d1150f6..f9c61bc 100644 --- a/unix/tclMtherr.c +++ b/unix/tclMtherr.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclMtherr.c,v 1.3 1999/04/16 00:48:04 stanton Exp $ + * RCS: @(#) $Id: tclMtherr.c,v 1.4 2001/11/23 01:40:13 das Exp $ */ #include "tclInt.h" @@ -61,6 +61,9 @@ struct exception { *---------------------------------------------------------------------- */ +#ifdef __APPLE_CC__ +__private_extern__ +#endif int matherr(xPtr) struct exception *xPtr; /* Describes error that occurred. */ |