aligned_malloc -> aligned_alloc

This commit is contained in:
SG
2024-04-09 17:08:12 +03:00
parent 5bca6d2e84
commit 0d3a717762
5 changed files with 4 additions and 14 deletions

View File

@@ -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);
}