diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/chheap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chheap.c b/src/chheap.c index 72be4a57f..46b26f7d8 100644 --- a/src/chheap.c +++ b/src/chheap.c @@ -231,7 +231,7 @@ static Semaphore hsem; #error "The heap allocator requires mutexes or semaphores to be enabled"
#endif
-void chHeapInit(void) {
+void heap_init(void) {
#if defined(CH_USE_MUTEXES)
chMtxInit(&hmtx);
|