mirror of
https://github.com/nitraiolo/CfgUSBLoader.git
synced 2024-12-04 17:14:14 +01:00
31 lines
601 B
C
31 lines
601 B
C
#ifndef _MEM_ALLOCATE_H
|
|
#define _MEM_ALLOCATE_H
|
|
|
|
#include <malloc.h>
|
|
|
|
extern __inline__ void* mem_alloc (size_t size) {
|
|
return malloc(size);
|
|
}
|
|
|
|
extern __inline__ void* mem_realloc (void *p, size_t size) {
|
|
return realloc(p, size);
|
|
}
|
|
|
|
extern __inline__ void* mem_align (size_t a, size_t size) {
|
|
#ifdef __wii__
|
|
return memalign(32, size);
|
|
#else
|
|
return malloc(size);
|
|
#endif
|
|
}
|
|
|
|
extern __inline__ void mem_free (void* mem) {
|
|
free(mem);
|
|
}
|
|
|
|
extern void* _EXT2_cache_mem_align (size_t a, size_t size);
|
|
|
|
extern void _EXT2_cache_mem_free (void* mem);
|
|
|
|
#endif /* _MEM_ALLOCATE_H */
|