LibC: Implement aligned_malloc

This is part of POSIX issue 8
This commit is contained in:
2025-07-29 13:51:08 +03:00
parent 52309e0754
commit 80ffde5e1e
2 changed files with 12 additions and 6 deletions

View File

@@ -44,6 +44,7 @@ void _Exit(int status) __attribute__((__noreturn__));
long a64l(const char* s);
void abort(void) __attribute__((__noreturn__));
int abs(int i);
void* aligned_alloc(size_t alignment, size_t size);
int atexit(void (*func)(void));
double atof(const char* str);
int atoi(const char* str);