summaryrefslogtreecommitdiffstats
path: root/generic/tclTomMathDecls.h
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-11-04 10:13:59 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-11-04 10:13:59 (GMT)
commita32fae2595e52296e08d1240fcf93f2161074f62 (patch)
treea6b1e3a8b762411c6222dc520b2ea0efcd935324 /generic/tclTomMathDecls.h
parentb5f69350e3ff6666d6077535041901c8d04b3617 (diff)
parent49f8bb2d42c970325160658862b0a7f0e2cd066a (diff)
downloadtcl-a32fae2595e52296e08d1240fcf93f2161074f62.zip
tcl-a32fae2595e52296e08d1240fcf93f2161074f62.tar.gz
tcl-a32fae2595e52296e08d1240fcf93f2161074f62.tar.bz2
Put extern "C" guards around all stub table struct definitions, so it is usable for C++ compilers as well without the danger of modifying the calling convention.
For tclDecls.h and tclOODecls.h it was no problem, because tcl.h and tclOO.h already contain those guards. But for the other *Decls.h files (e.g. tclTomMathDecls.h) it was not correct.
Diffstat (limited to 'generic/tclTomMathDecls.h')
-rw-r--r--generic/tclTomMathDecls.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/generic/tclTomMathDecls.h b/generic/tclTomMathDecls.h
index ef22153..69b095c 100644
--- a/generic/tclTomMathDecls.h
+++ b/generic/tclTomMathDecls.h
@@ -134,6 +134,10 @@
/* !BEGIN!: Do not edit below this line. */
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/*
* Exported function declarations:
*/
@@ -346,10 +350,8 @@ typedef struct TclTomMathStubs {
int (*tclBN_mp_cnt_lsb) (const mp_int *a); /* 63 */
} TclTomMathStubs;
-#ifdef __cplusplus
-extern "C" {
-#endif
extern const TclTomMathStubs *tclTomMathStubsPtr;
+
#ifdef __cplusplus
}
#endif