summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorpedro <>2008-11-26 12:06:54 +0000
committerpedro <>2008-11-26 12:06:54 +0000
commitf078cd2ae39ede1a6a6efeb3b0601af2b971025e (patch)
treece408eef91734cf92cf1f9d8ae08adc911e6c817 /src
parent1cb9fdc86cd93809f9606b4865b35475b00b7933 (diff)
downloadopenbsd-f078cd2ae39ede1a6a6efeb3b0601af2b971025e.tar.gz
openbsd-f078cd2ae39ede1a6a6efeb3b0601af2b971025e.tar.bz2
openbsd-f078cd2ae39ede1a6a6efeb3b0601af2b971025e.zip
Fix typo, okay jmc@.
Diffstat (limited to 'src')
-rw-r--r--src/lib/libc/stdlib/malloc.36
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libc/stdlib/malloc.3 b/src/lib/libc/stdlib/malloc.3
index 79d36d61fd..edcd748ed9 100644
--- a/src/lib/libc/stdlib/malloc.3
+++ b/src/lib/libc/stdlib/malloc.3
@@ -30,9 +30,9 @@
30.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 30.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31.\" SUCH DAMAGE. 31.\" SUCH DAMAGE.
32.\" 32.\"
33.\" $OpenBSD: malloc.3,v 1.57 2008/11/20 09:05:15 otto Exp $ 33.\" $OpenBSD: malloc.3,v 1.58 2008/11/26 12:06:54 pedro Exp $
34.\" 34.\"
35.Dd $Mdocdate: November 20 2008 $ 35.Dd $Mdocdate: November 26 2008 $
36.Dt MALLOC 3 36.Dt MALLOC 3
37.Os 37.Os
38.Sh NAME 38.Sh NAME
@@ -251,7 +251,7 @@ Currently junk is bytes of 0xd0 when allocating; this is pronounced
251Freed chunks are filled with 0xdf. 251Freed chunks are filled with 0xdf.
252.It Cm P 252.It Cm P
253.Dq Move allocations within a page. 253.Dq Move allocations within a page.
254Allocations larger than half a page but smaller that a page 254Allocations larger than half a page but smaller than a page
255are aligned to the end of a page to catch buffer overruns in more 255are aligned to the end of a page to catch buffer overruns in more
256cases. 256cases.
257This is the default. 257This is the default.