summaryrefslogtreecommitdiff
path: root/manual/memory.texi
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-07-22 00:57:09 +0000
committerUlrich Drepper <drepper@redhat.com>2002-07-22 00:57:09 +0000
commit46ca7a1c6d7b01a2ab5e4a75cbb68f902dcb95ad (patch)
treee95ca30e2aca791dfcbc65103e6ce5f6c8aece97 /manual/memory.texi
parent846c6907d02ba2d8027e2053abb3d7ec017d9191 (diff)
(Hooks for Malloc): Correct order of arguments for __memalign_hook.
Diffstat (limited to 'manual/memory.texi')
-rw-r--r--manual/memory.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/memory.texi b/manual/memory.texi
index c840e70829..5427799294 100644
--- a/manual/memory.texi
+++ b/manual/memory.texi
@@ -892,7 +892,7 @@ uses whenever it is called. You should define this function to look
like @code{memalign}; that is, like:
@smallexample
-void *@var{function} (size_t @var{size}, size_t @var{alignment}, const void *@var{caller})
+void *@var{function} (size_t @var{alignment}, size_t @var{size}, const void *@var{caller})
@end smallexample
The value of @var{caller} is the return address found on the stack when