summaryrefslogtreecommitdiff
path: root/lib/libXt/man/XtMalloc.man
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@cvs.openbsd.org>2012-03-10 16:45:50 +0000
committerMatthieu Herrb <matthieu@cvs.openbsd.org>2012-03-10 16:45:50 +0000
commitcc7d66bfcf0d3305ee962a167dd9f4338266ebec (patch)
treebae58760726ce0b349447cac2b5c1859c4737c0f /lib/libXt/man/XtMalloc.man
parenta5008d58b42532ef26fa9a62407a31e9991a0e39 (diff)
Update to libXt 1.1.2
Diffstat (limited to 'lib/libXt/man/XtMalloc.man')
-rw-r--r--lib/libXt/man/XtMalloc.man18
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/libXt/man/XtMalloc.man b/lib/libXt/man/XtMalloc.man
index 70183ece6..f36728de3 100644
--- a/lib/libXt/man/XtMalloc.man
+++ b/lib/libXt/man/XtMalloc.man
@@ -128,17 +128,17 @@
XtMalloc, XtCalloc, XtRealloc, XtFree, XtNew, XtNewString \- memory management functions
.SH SYNTAX
.HP
-char *XtMalloc(Cardinal \fIsize\fP);
+char *XtMalloc(Cardinal \fIsize\fP);
.HP
-char *XtCalloc(Cardinal \fInum\fP, Cardinal \fIsize\fP);
+char *XtCalloc(Cardinal \fInum\fP, Cardinal \fIsize\fP);
.HP
-char *XtRealloc(char *\fIptr\fP, Cardinal \fInum\fP);
+char *XtRealloc(char *\fIptr\fP, Cardinal \fInum\fP);
.HP
-void XtFree(char *\fIptr\fP);
+void XtFree(char *\fIptr\fP);
.HP
-\fItype\fP *XtNew(\fItype\fP);
+\fItype\fP *XtNew(\fItype\fP);
.HP
-String XtNewString(String \fIstring\fP);
+String XtNewString(String \fIstring\fP);
.HP
Cardinal XtAsprintf(String *\fInew_string\fP, const char *\fIformat\fP, ...);
.SH ARGUMENTS
@@ -161,7 +161,7 @@ Specifies a formatting string as defined by sprintf(3c)
.SH DESCRIPTION
The
.ZN XtMalloc
-functions returns a pointer to a block of storage of at least
+functions returns a pointer to a block of storage of at least
the specified size bytes.
If there is insufficient memory to allocate the new block,
.ZN XtMalloc
@@ -170,7 +170,7 @@ calls
.LP
The
.ZN XtCalloc
-function allocates space for the specified number of array elements
+function allocates space for the specified number of array elements
of the specified size and initializes the space to zero.
If there is insufficient memory to allocate the new block,
.ZN XtCalloc
@@ -227,7 +227,7 @@ is a convenience macro that calls
.ZN XtMalloc
with the following arguments specified:
.LP
-.Ds
+.Ds
.TA .5i
.ta .5i
(strcpy(XtMalloc((unsigned) strlen(str) + 1), str))