Sign in
aomedia
/
libavif
/
refs/tags/v0.3.11
/
.
/
src
/
mem.c
blob: 4ba8a8e5a755d8af1f03d19553e6ff9b47433f8a [
file
] [
log
] [
blame
]
// Copyright 2019 Joe Drago. All rights reserved.
// SPDX-License-Identifier: BSD-2-Clause
#include
"avif/avif.h"
#include
<stdlib.h>
void
*
avifAlloc
(
size_t
size
)
{
return
malloc
(
size
);
}
void
avifFree
(
void
*
p
)
{
free
(
p
);
}