1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

Use proper doxygen markup to mark deprecations

This commit is contained in:
Manuel Pégourié-Gonnard
2015-03-20 16:19:35 +00:00
parent 47e0214d2c
commit 71432849ed
10 changed files with 32 additions and 19 deletions

View File

@ -1,7 +1,9 @@
/**
* \file memory.h
*
* \brief Memory allocation layer (Deprecated to platform layer)
* \brief Memory allocation layer
*
* \deprecated Use the platform layer instead
*
* Copyright (C) 2006-2014, ARM Limited, All Rights Reserved
*
@ -35,6 +37,11 @@
#include "platform.h"
#include "memory_buffer_alloc.h"
/**
* \brief Set malloc() / free() callback
*
* \deprecated Use platform_set_malloc_free instead
*/
int memory_set_own( void * (*malloc_func)( size_t ),
void (*free_func)( void * ) )
{