diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-10-18 02:40:43 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-10-18 02:40:43 +0200 |
commit | 614a7455c45a4d2c7f25d9e0bf86a48e1567b4e7 (patch) | |
tree | f510a323d011293936f87a3a4ed05dbe6cd4b1b3 /doc/info/chap | |
parent | info: memory allocation with aligned pointers (diff) | |
download | slibc-614a7455c45a4d2c7f25d9e0bf86a48e1567b4e7.tar.gz slibc-614a7455c45a4d2c7f25d9e0bf86a48e1567b4e7.tar.bz2 slibc-614a7455c45a4d2c7f25d9e0bf86a48e1567b4e7.tar.xz |
m info
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r-- | doc/info/chap/memory-allocation.texinfo | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/info/chap/memory-allocation.texinfo b/doc/info/chap/memory-allocation.texinfo index 761894a..d6b6b70 100644 --- a/doc/info/chap/memory-allocation.texinfo +++ b/doc/info/chap/memory-allocation.texinfo @@ -584,7 +584,7 @@ is not a multiple of @code{sizeof(void*)}, and @fnindex valloc This function is similar to @code{memalign}. @code{valloc(n)} is equivalent to -@code{memalign(sysconf(_SC_PAGESIZE), n)}; +@code{memalign@-(sysconf(_SC_PAGESIZE), n)}; the alignment is the memory page size. This function is declared in the header file |