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/memalign.c
blob: 32cd87d812f7f4228d1f85932f7a7dbb75777de7 (plain) (blame)
1
2
3
4
5
6
7
#define _BSD_SOURCE
#include <stdlib.h>
void *memalign(size_t align, size_t len)
{
	return aligned_alloc(align, len);
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月09日 04:26:51 +0000

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