copy-file: Add functions for copying non-confidential files.
[gnulib.git] / doc / glibc-functions / memalign.texi
blob790f246e9215063f5438195afe5b8119c5b5d64e
1 @node memalign
2 @subsection @code{memalign}
3 @findex memalign
5 Documentation:
6 @itemize
7 @item
8 @ifinfo
9 @ref{Aligned Memory Blocks,,Allocating Aligned Memory Blocks,libc},
10 @end ifinfo
11 @ifnotinfo
12 @url{https://www.gnu.org/software/libc/manual/html_node/Aligned-Memory-Blocks.html},
13 @end ifnotinfo
14 @item
15 @uref{https://www.kernel.org/doc/man-pages/online/pages/man3/memalign.3.html,,man memalign}.
16 @end itemize
18 Gnulib module: memalign
20 Portability problems fixed by Gnulib:
21 @itemize
22 @item
23 This function is declared in @code{<stdlib.h>} instead of @code{<malloc.h>}
24 on some platforms:
25 Solaris 11.
26 @item
27 This function doesn't accept an alignment of 1 or 2 on some platforms:
28 Solaris 11.
29 @end itemize
31 Portability problems not fixed by Gnulib:
32 @itemize
33 @item
34 This function is missing on some platforms:
35 macOS 14, FreeBSD 12.0, NetBSD 10.0, OpenBSD 7.5, Minix 3.1.8, AIX 5.1, HP-UX 11.00, mingw, MSVC 14.
36 @end itemize
38 The Gnulib module @code{aligned-malloc} provides functions for
39 allocating and freeing blocks of suitably aligned memory.