mailing list of musl libc
 help / color / mirror / code / Atom feed
2b7438bc9d4675a91adda217f3c7be5b902d61a3 blob 209 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
 
#include <stdlib.h>

void free(void *p)
{
	__libc_free(p);
}

void free_sized (void *p, size_t size)
{
	__libc_free(p);
}

void free_aligned_sized (void *p, size_t alignment, size_t size)
{
	__libc_free(p);
}
debug log:

solving 2b7438bc ...
found 2b7438bc in https://inbox.vuxu.org/musl/e540f128a8d94f3ff64d5aed8021c83cc6e5f26e.1684932892.git.Jens.Gustedt@inria.fr/
found 3944f7b2 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 3944f7b28f3c3265cb092cf984c69e89f62f435a	src/malloc/free.c

applying [1/1] https://inbox.vuxu.org/musl/e540f128a8d94f3ff64d5aed8021c83cc6e5f26e.1684932892.git.Jens.Gustedt@inria.fr/
diff --git a/src/malloc/free.c b/src/malloc/free.c
index 3944f7b2..2b7438bc 100644

Checking patch src/malloc/free.c...
Applied patch src/malloc/free.c cleanly.

index at:
100644 2b7438bc9d4675a91adda217f3c7be5b902d61a3	src/malloc/free.c

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).