mirror of
https://github.com/cuberite/polarssl.git
synced 2025-09-07 22:27:01 -04:00
19 lines
345 B
C
19 lines
345 B
C
/**
|
|
* \file memory.h
|
|
*
|
|
* \brief Helper macros and functions related to testing memory management.
|
|
*/
|
|
|
|
/*
|
|
* Copyright The Mbed TLS Contributors
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef TEST_MEMORY_H
|
|
#define TEST_MEMORY_H
|
|
|
|
#include "test/helpers.h"
|
|
#include "mbedtls/platform.h"
|
|
|
|
#endif /* TEST_MEMORY_H */
|