Files
arcs/arcs-sdk/modules/cpputest/tests/CppUTest/AllocLetTestFree.c
2026-08-13 16:50:52 +08:00

29 lines
548 B
C

#include "CppUTest/StandardCLibrary.h"
#if CPPUTEST_USE_STD_C_LIB
#include "AllocLetTestFree.h"
typedef struct AllocLetTestFreeStruct
{
int placeHolderForHiddenStructElements;
} AllocLetTestFreeStruct;
AllocLetTestFree AllocLetTestFree_Create(void)
{
size_t count = 1;
AllocLetTestFree self = (AllocLetTestFree)calloc(count, sizeof(AllocLetTestFreeStruct));
return self;
}
void AllocLetTestFree_Destroy(AllocLetTestFree self)
{
AllocLetTestFree no_use = self;
self = NULL;
self = no_use;
(void)self;
}
#endif