Removed the kmalloc(), kfree(), and kstrdup() prototypes.

You now need to include malloc.h (or stdlib.h) and use malloc(), free(),
and strdup().


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1772 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2002-10-29 23:03:47 +00:00
parent c1983bad48
commit f2e04b5fa6

View File

@ -14,8 +14,5 @@
int heap_init(addr new_heap_base);
int heap_init_postsem(kernel_args *ka);
void *kmalloc(unsigned int size);
void kfree(void *address);
char *kstrdup(const char*text);
#endif /* _KERNEL_MEMHEAP_H */
#endif /* _KERNEL_MEMHEAP_H */