diff options
author | hobbs <hobbs@noemail.net> | 2001-03-28 02:26:38 (GMT) |
---|---|---|
committer | hobbs <hobbs@noemail.net> | 2001-03-28 02:26:38 (GMT) |
commit | e81bfec39996ad91359d3033ef91ccb5c0ca5a87 (patch) | |
tree | 965288fee92e3b8ed6e690da823868b40b4687f0 /doc/Alloc.3 | |
parent | 9111f439bbce04d76d29fb8f1f5a6ef61cc3e1f0 (diff) | |
download | tcl-e81bfec39996ad91359d3033ef91ccb5c0ca5a87.zip tcl-e81bfec39996ad91359d3033ef91ccb5c0ca5a87.tar.gz tcl-e81bfec39996ad91359d3033ef91ccb5c0ca5a87.tar.bz2 |
* doc/Alloc.3: corrected docs to note that Tcl_Attempt* return
char *'s, not ints. [Bug #411388]
FossilOrigin-Name: 62b0f03d24dd8e334208eb4cdee7b680188670a9
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 |