repo.or.cz
/
AROS-Contrib.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
make sure "S" is generated.
[AROS-Contrib.git]
/
vpdf
/
system
/
memory.h
blob
5619b0ed0c19863b6a45f097d1f6f5ce0a003b13
1
#ifndef SYS_MEMORY_H
2
#define SYS_MEMORY_H
3
4
void
*
mmalloc
(
int
size
);
5
void
*
mcalloc
(
int
size
,
int
num
);
6
void
mfree
(
void
*
mem
);
7
8
void
MemoryInit
(
void
);
9
10
#endif