/* SPDX-License-Identifier: GPL-2.0 */ /* Copyright (C) B.A.T.M.A.N. contributors: * * Marek Lindner * * License-Filename: LICENSES/preferred/GPL-2.0 */ #ifndef _BATCTL_ALLOCATE_H #define _BATCTL_ALLOCATE_H /* debug allocate wrapper to keep hash.c happy */ #include #define debugMalloc(length, tag) malloc(length) #define debugFree(mem, tag) free(mem) #endif