mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-06-25 21:48:31 +08:00
Style: uncrusitfy
This commit is contained in:

committed by
alfred gedeon

parent
a5dbc2b1de
commit
718178c68a
@ -38,13 +38,13 @@
|
||||
* @return Pointer to the memory region if the allocation is successful, NULL
|
||||
* otherwise.
|
||||
*/
|
||||
void *pvPortMalloc( size_t xWantedSize );
|
||||
void * pvPortMalloc( size_t xWantedSize );
|
||||
|
||||
/**
|
||||
* @brief Frees the previously allocated memory.
|
||||
*
|
||||
* @param[in] pv Pointer to the memory to be freed.
|
||||
*/
|
||||
void vPortFree( void *pv );
|
||||
void vPortFree( void * pv );
|
||||
|
||||
#endif /* __SECURE_HEAP_H__ */
|
||||
|
Reference in New Issue
Block a user