AK: Remove kfree definition

This commit is contained in:
Michel Hermier 2022-01-12 04:27:21 +01:00 committed by Andreas Kling
commit cb3cc6ec27
Notes: sideshowbarker 2024-07-17 20:45:42 +09:00
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