aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/libc/stdlib/free.c
blob: 65e9769d759d60c1890f02eb519d83ecdf92b511 (plain) (blame)
1
2
3
4
5
6
7
#include <stdint.h>
#include <syscall.h>

void free(void *addr)
{
	syscall_free((u32)addr);
}