summaryrefslogtreecommitdiffstats
path: root/generic/tclTomMathDecls.h
diff options
context:
space:
mode:
authornijtmans <nijtmans>2008-07-24 22:57:54 (GMT)
committernijtmans <nijtmans>2008-07-24 22:57:54 (GMT)
commitc6ff6fce1217116410ac5084b505b161f58ab1a4 (patch)
treeb05f08d9e623ebc209666315ba61553ad3139330 /generic/tclTomMathDecls.h
parentac5cc6796dae55b9839ed9f82f6a2841b7a4bfa3 (diff)
downloadtcl-c6ff6fce1217116410ac5084b505b161f58ab1a4.zip
tcl-c6ff6fce1217116410ac5084b505b161f58ab1a4.tar.gz
tcl-c6ff6fce1217116410ac5084b505b161f58ab1a4.tar.bz2
just a few const -> CONST (in header files and .decls files)
and CONST -> const (.c files and internal .h files)
Diffstat (limited to 'generic/tclTomMathDecls.h')
-rw-r--r--generic/tclTomMathDecls.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclTomMathDecls.h b/generic/tclTomMathDecls.h
index 548ceb1..203e90c 100644
--- a/generic/tclTomMathDecls.h
+++ b/generic/tclTomMathDecls.h
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclTomMathDecls.h,v 1.7 2008/07/22 23:01:44 das Exp $
+ * RCS: @(#) $Id: tclTomMathDecls.h,v 1.8 2008/07/24 22:57:57 nijtmans Exp $
*/
#ifndef _TCLTOMMATHDECLS
@@ -323,7 +323,7 @@ EXTERN int TclBN_mp_radix_size (mp_int* a, int radix, int* size);
#ifndef TclBN_mp_read_radix_TCL_DECLARED
#define TclBN_mp_read_radix_TCL_DECLARED
/* 36 */
-EXTERN int TclBN_mp_read_radix (mp_int* a, const char* str,
+EXTERN int TclBN_mp_read_radix (mp_int* a, CONST char* str,
int radix);
#endif
#ifndef TclBN_mp_rshd_TCL_DECLARED
@@ -493,7 +493,7 @@ typedef struct TclTomMathStubs {
int (*tclBN_mp_neg) (mp_int* a, mp_int* b); /* 33 */
int (*tclBN_mp_or) (mp_int* a, mp_int* b, mp_int* c); /* 34 */
int (*tclBN_mp_radix_size) (mp_int* a, int radix, int* size); /* 35 */
- int (*tclBN_mp_read_radix) (mp_int* a, const char* str, int radix); /* 36 */
+ int (*tclBN_mp_read_radix) (mp_int* a, CONST char* str, int radix); /* 36 */
void (*tclBN_mp_rshd) (mp_int * a, int shift); /* 37 */
int (*tclBN_mp_shrink) (mp_int* a); /* 38 */
void (*tclBN_mp_set) (mp_int* a, mp_digit b); /* 39 */