diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2001-12-18 15:21:20 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2001-12-18 15:21:20 (GMT) |
| commit | 69b6d954b6059e7ecfaa8a008dffa6bda8c44c0c (patch) | |
| tree | ea1bfda2c044ad0afd621d6bcb88bbf1310f7961 /generic/tclCkalloc.c | |
| parent | 080d8d6101666c7eaa566871f9ad893d6b346d20 (diff) | |
| download | tcl-69b6d954b6059e7ecfaa8a008dffa6bda8c44c0c.zip tcl-69b6d954b6059e7ecfaa8a008dffa6bda8c44c0c.tar.gz tcl-69b6d954b6059e7ecfaa8a008dffa6bda8c44c0c.tar.bz2 | |
Minor stub-table fixes; see ChangeLog for details
Diffstat (limited to 'generic/tclCkalloc.c')
| -rw-r--r-- | generic/tclCkalloc.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/generic/tclCkalloc.c b/generic/tclCkalloc.c index a3f5e15..dac67d4 100644 --- a/generic/tclCkalloc.c +++ b/generic/tclCkalloc.c @@ -13,7 +13,7 @@ * * This code contributed by Karl Lehenbauer and Mark Diekhans * - * RCS: @(#) $Id: tclCkalloc.c,v 1.12 2001/04/04 16:07:20 kennykb Exp $ + * RCS: @(#) $Id: tclCkalloc.c,v 1.13 2001/12/18 15:21:20 dkf Exp $ */ #include "tclInt.h" @@ -449,7 +449,7 @@ Tcl_DbCkalloc(size, file, line) char * Tcl_AttemptDbCkalloc(size, file, line) unsigned int size; - char *file; + CONST char *file; int line; { struct mem_header *result; @@ -628,10 +628,10 @@ Tcl_DbCkfree(ptr, file, line) */ char * Tcl_DbCkrealloc(ptr, size, file, line) - char *ptr; + char *ptr; unsigned int size; - CONST char *file; - int line; + CONST char *file; + int line; { char *new; unsigned int copySize; @@ -660,10 +660,10 @@ Tcl_DbCkrealloc(ptr, size, file, line) char * Tcl_AttemptDbCkrealloc(ptr, size, file, line) - char *ptr; + char *ptr; unsigned int size; - char *file; - int line; + CONST char *file; + int line; { char *new; unsigned int copySize; @@ -1036,7 +1036,7 @@ Tcl_AttemptAlloc (size) char * Tcl_AttemptDbCkalloc(size, file, line) unsigned int size; - char *file; + CONST char *file; int line; { char *result; @@ -1112,10 +1112,10 @@ Tcl_AttemptRealloc(ptr, size) char * Tcl_AttemptDbCkrealloc(ptr, size, file, line) - char *ptr; + char *ptr; unsigned int size; - char *file; - int line; + CONST char *file; + int line; { char *result; |
