diff options
author | Andreas Jaeger <aj@suse.de> | 2002-03-24 12:58:23 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2002-03-24 12:58:23 +0000 |
commit | 671972156a5283a6b14d2ec150924bd582f65bbb (patch) | |
tree | f9e574a0bc80ef0586f15cc50a614d51bd44b7d0 /manual | |
parent | 4e6117f3996680e521527e6b4bdac1d306a2ddcf (diff) | |
download | glibc-671972156a5283a6b14d2ec150924bd582f65bbb.tar glibc-671972156a5283a6b14d2ec150924bd582f65bbb.tar.gz glibc-671972156a5283a6b14d2ec150924bd582f65bbb.tar.bz2 glibc-671972156a5283a6b14d2ec150924bd582f65bbb.zip |
(Aligned Memory Blocks): Fix typo.
Diffstat (limited to 'manual')
-rw-r--r-- | manual/memory.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/memory.texi b/manual/memory.texi index e370c72e43..e64dc8d9dc 100644 --- a/manual/memory.texi +++ b/manual/memory.texi @@ -618,7 +618,7 @@ the GNU system is always a multiple of eight (or sixteen on 64-bit systems). If you need a block whose address is a multiple of a higher power of two than that, use @code{memalign}, @code{posix_memalign}, or @code{valloc}. @code{memalign} is declared in @file{malloc.h} and -@code{posix_memalign) is declared in @file{stdlib.h}. +@code{posix_memalign} is declared in @file{stdlib.h}. With the GNU library, you can use @code{free} to free the blocks that @code{memalign}, @code{posix_memalign}, and @code{valloc} return. That |