repo.or.cz
/
libogc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
SMB - attribute offset fixed, filetimes all fully working
[libogc.git]
/
libdb
/
uIP
/
memr.h
blob
a2455d6cc48f3a78086902aecdef594c0b3f9f09
1
#ifndef __MEMR_H__
2
#define __MEMR_H__
3
4
#include <gctypes.h>
5
6
void
memr_init
();
7
void
*
memr_malloc
(
u32 size
);
8
void
memr_free
(
void
*
ptr
);
9
void
*
memr_realloc
(
void
*
ptr
,
u32 newsize
);
10
void
*
memr_reallocm
(
void
*
ptr
,
u32 newsize
);
11
12
#endif