1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 13:57:35 +00:00

LibC: Remove _aligned_malloc and _aligned_free

We now have a proper aligned allocation implementation, and the
toolchain patch to make Clang use the intermediary implementation
has already been removed in an earlier iteration.
This commit is contained in:
Tim Schumacher 2022-09-14 11:59:22 +02:00 committed by Brian Gianforcaro
parent 119567e176
commit 88ff01bb17
2 changed files with 0 additions and 39 deletions

View file

@ -25,8 +25,6 @@ size_t malloc_good_size(size_t);
void serenity_dump_malloc_stats(void);
void free(void*);
__attribute__((alloc_size(2))) void* realloc(void* ptr, size_t);
__attribute__((malloc, alloc_size(1), alloc_align(2))) void* _aligned_malloc(size_t size, size_t alignment);
void _aligned_free(void* memblock);
char* getenv(char const* name);
char* secure_getenv(char const* name);
int putenv(char*);