LexLeo 0.0.0-dev+f8e5087-dirty
Technical documentation
Loading...
Searching...
No Matches
osal_mem_fake_provider.c
Go to the documentation of this file.
1// src/foundation/osal/osal_mem/tests/support/fake_provider/src/osal_mem_fake_provider.c
2
4
5#include "osal/mem/osal_mem.h"
6
8 .malloc = fake_malloc,
9 .free = fake_free,
10 .calloc = fake_calloc,
11 .realloc = fake_realloc,
12 .strdup = fake_strdup,
13};
14
static const osal_mem_ops_t OSAL_MEM_FAKE_OPS
const osal_mem_ops_t * osal_mem_test_fake_ops(void)
void *(* malloc)(size_t size)