25 lines
619 B
C
25 lines
619 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Includes ----------------------------------------------------------------- */
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
/* Exported constants ------------------------------------------------------- */
|
|
/* Exported macro ----------------------------------------------------------- */
|
|
/* Exported types ----------------------------------------------------------- */
|
|
/* Exported functions prototypes -------------------------------------------- */
|
|
void *BSP_Malloc(size_t size);
|
|
/**
|
|
* @brief
|
|
* @param pv
|
|
*/
|
|
void BSP_Free(void *pv);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|