mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-12 13:18:35 -07:00
aligned_malloc -> aligned_alloc
This commit is contained in:
@@ -38,7 +38,7 @@ char* strdup(const char* s) {
|
||||
return y;
|
||||
}
|
||||
|
||||
void* aligned_malloc(size_t size, size_t alignment) {
|
||||
void* aligned_alloc(size_t size, size_t alignment) {
|
||||
return pvPortAllocAligned(size, alignment);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user