diff options
author | hobbs <hobbs> | 2001-03-28 02:26:39 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2001-03-28 02:26:39 (GMT) |
commit | 7a503d88f6b5e708dd90ded74fef1f3bcdcae67f (patch) | |
tree | 965288fee92e3b8ed6e690da823868b40b4687f0 /doc/Alloc.3 | |
parent | 3bd0408188670e120a5b106caaf361709a6006be (diff) | |
download | tcl-7a503d88f6b5e708dd90ded74fef1f3bcdcae67f.zip tcl-7a503d88f6b5e708dd90ded74fef1f3bcdcae67f.tar.gz tcl-7a503d88f6b5e708dd90ded74fef1f3bcdcae67f.tar.bz2 |
* doc/Alloc.3: corrected docs to note that Tcl_Attempt* return
char *'s, not ints. [Bug #411388]
Diffstat (limited to 'doc/Alloc.3')
-rw-r--r-- | doc/Alloc.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/Alloc.3 b/doc/Alloc.3 index c7396a0..dc36985 100644 --- a/doc/Alloc.3 +++ b/doc/Alloc.3 @@ -4,7 +4,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: Alloc.3,v 1.3 2000/09/14 18:42:28 ericm Exp $ +'\" RCS: @(#) $Id: Alloc.3,v 1.4 2001/03/28 02:26:39 hobbs Exp $ '\" .so man.macros .TH Tcl_Alloc 3 7.5 Tcl "Tcl Library Procedures" @@ -23,10 +23,10 @@ char * char * \fBTcl_Realloc\fR(\fIptr, size\fR) .sp -int +char * \fBTcl_AttemptAlloc\fR(\fIsize\fR) .sp -int +char * \fBTcl_AttemptRealloc\fR(\fIptr, size\fR) .SH ARGUMENTS .AS char *size |