diff options
Diffstat (limited to 'src/chheap.c')
-rw-r--r-- | src/chheap.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/chheap.c b/src/chheap.c index 8ba55f9ad..c07212226 100644 --- a/src/chheap.c +++ b/src/chheap.c @@ -65,10 +65,9 @@ static struct { /**
* @brief Initializes the allocator subsystem.
*
- * @note It is internally invoked, this function should not normally be
- * invoked from the user code.
+ * @note Internal use only.
*/
-void chHeapInit(void) {
+void heap_init(void) {
struct header *hp;
#if CH_HEAP_SIZE == 0
|