posix_memalign.c\malloc\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/malloc/posix_memalign.c
blob: ad4d8f473015e378ad1025363cd68507ec539f18 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <stdlib.h>
#include <errno.h>
int posix_memalign(void **res, size_t align, size_t len)
{
	if (align < sizeof(void *)) return EINVAL;
	void *mem = aligned_alloc(align, len);
	if (!mem) return errno;
	*res = mem;
	return 0;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月12日 15:21:09 +0000

AltStyle によって変換されたページ (->オリジナル) /