mirror of
https://github.com/nitraiolo/CfgUSBLoader.git
synced 2024-12-03 16:44:16 +01:00
27 lines
493 B
C
27 lines
493 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);
|
|
}
|
|
|
|
#endif /* _MEM_ALLOCATE_H */
|