blob: 67b54bde7c994d1c4fbfc6270dfc9c2528604d79 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* Copyright (c) 2023 Marc Pervaz Boocha
*
* SPDX-License-Identifier: MIT
*/
#include <alloc.h>
void calt_free(void *ptr) {
if (ptr) {
calt_get_alloc().free(ptr);
}
}
|