Added contigfree() as well.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22804 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2007-11-02 15:07:50 +00:00
parent 01ada2057f
commit 689177bed5
1 changed files with 3 additions and 1 deletions

View File

@ -42,6 +42,8 @@ void _kernel_contigfree(void *addr, unsigned long size);
# define contigmalloc(size, type, flags, low, high, alignment, boundary) \
_kernel_contigmalloc(__FILE__, __LINE__, size, flags, low, high, \
alignment, boundary)
# define contigfree(addr, size, base) \
_kernel_contigfree(addr, size)
#endif
#endif /* _FBSD_COMPAT_SYS_MALLOC_H_ */