diff options
author | stanton <stanton@noemail.net> | 1999-04-30 22:44:58 (GMT) |
---|---|---|
committer | stanton <stanton@noemail.net> | 1999-04-30 22:44:58 (GMT) |
commit | d4d82278af6d77229ba7e223ed3a0b420c1cd06b (patch) | |
tree | a193f27eb18d04a30f8b4f663611d5957c2f5f6a /generic/tclDecls.h | |
parent | 0a20d911e0b81832d173ea7e07c079875292de0b (diff) | |
download | tcl-d4d82278af6d77229ba7e223ed3a0b420c1cd06b.zip tcl-d4d82278af6d77229ba7e223ed3a0b420c1cd06b.tar.gz tcl-d4d82278af6d77229ba7e223ed3a0b420c1cd06b.tar.bz2 |
* Merged changes from 8.1.0 branch
FossilOrigin-Name: dc45694c11c7ad43dd4c5dca49bfe1d7cedec9bb
Diffstat (limited to 'generic/tclDecls.h')
-rw-r--r-- | generic/tclDecls.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/generic/tclDecls.h b/generic/tclDecls.h index cb40ff3..5a2a70c 100644 --- a/generic/tclDecls.h +++ b/generic/tclDecls.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: tclDecls.h,v 1.9 1999/04/21 21:50:25 rjohnson Exp $ + * RCS: @(#) $Id: tclDecls.h,v 1.10 1999/04/30 22:45:01 stanton Exp $ */ #ifndef _TCLDECLS @@ -1529,7 +1529,13 @@ typedef struct TclStubs { int (*tcl_Stat) _ANSI_ARGS_((CONST char * path, struct stat * bufPtr)); /* 368 */ } TclStubs; +#ifdef __cplusplus +extern "C" { +#endif extern TclStubs *tclStubsPtr; +#ifdef __cplusplus +} +#endif #if defined(USE_TCL_STUBS) && !defined(USE_TCL_STUB_PROCS) |