mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 02:43:15 +01:00
8 lines
144 B
C
8 lines
144 B
C
#ifndef __PRIVATE_MALLOC_H__
|
|
#define __PRIVATE_MALLOC_H__
|
|
|
|
void *kmalloc(size_t size);
|
|
void kfree(void *blk);
|
|
|
|
#endif /*__PRIVATE_MALLOC_H__ */
|