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
cleanup debug
[AROS.git]
/
workbench
/
c
/
CheckMem.c
blob
66ab6130c2df38b5d4912d1d2e7f77f63b837fa0
1
/******************************************************************************
2
3
4
NAME
5
6
CheckMem
7
8
SYNOPSIS
9
10
(N/A)
11
12
LOCATION
13
14
C:
15
16
FUNCTION
17
18
Triggers a memory check.
19
20
INPUTS
21
22
RESULT
23
24
NOTES
25
26
EXAMPLE
27
28
BUGS
29
30
SEE ALSO
31
32
INTERNALS
33
34
HISTORY
35
36
******************************************************************************/
37
38
#include <exec/memory.h>
39
#include <proto/exec.h>
40
41
int
main
(
void
)
42
{
43
AvailMem
(
MEMF_CLEAR
);
44
45
return
0
;
46
}