repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Indentation fix, cleanup.
[AROS.git]
/
compiler
/
purify
/
src
/
memory.h
blob
f05480ba635da08518aa83b9ab8f6b7515e59b4c
1
#ifndef _MEMORY_H
2
#define _MEMORY_H
3
4
#ifndef _POSINFO_H
5
# include
"posinfo.h"
6
#endif
7
8
typedef
struct
_PMemoryNode PMemoryNode
;
9
10
struct
_PMemoryNode
11
{
12
RememberData alloc
;
13
RememberData free
;
14
char
*
memptr
;
15
char
mem
[
16
];
16
};
17
18
void
Purify_MemoryExit
(
void
);
19
20
#endif
/* _MEMORY_H */