blob: 6616703fe06e7dbe2acd6ab4edd921a62ff4ffe9 [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)
{
void* out = malloc(size);
if (out == NULL) {
abort();
}
return out;
}
void avifFree(void * p)
{
free(p);
}