OSDN Git Service

Renamed the first sample project.
[kozos-expbrd/kozos_expbrd.git] / firm / sample / simple_mp3_player / os / memory.h
1 #ifndef _KOZOS_MEMORY_H_INCLUDED_
2 #define _KOZOS_MEMORY_H_INCLUDED_
3
4 int kzmem_init(void);        /* Æ°Åª¥á¥â¥ê¤Î½é´ü²½ */
5 void *kzmem_alloc(int size); /* Æ°Åª¥á¥â¥ê¤Î³ÍÆÀ */
6 void kzmem_free(void *mem);  /* ¥á¥â¥ê¤Î²òÊü */
7
8 #endif