1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:47:45 +00:00

AK: Remove kfree definition

This commit is contained in:
Michel Hermier 2022-01-12 04:27:21 +01:00 committed by Andreas Kling
parent 9039f8fb0f
commit cb3cc6ec27
2 changed files with 2 additions and 3 deletions

View file

@ -17,11 +17,10 @@
# define kmalloc malloc
# define kmalloc_good_size malloc_good_size
# define kfree free
inline void kfree_sized(void* ptr, size_t)
{
kfree(ptr);
free(ptr);
}
#endif