Build various tools as native versions
[AROS.git] / workbench / c / CheckMem.c
blob66ab6130c2df38b5d4912d1d2e7f77f63b837fa0
1 /******************************************************************************
4 NAME
6 CheckMem
8 SYNOPSIS
10 (N/A)
12 LOCATION
16 FUNCTION
18 Triggers a memory check.
20 INPUTS
22 RESULT
24 NOTES
26 EXAMPLE
28 BUGS
30 SEE ALSO
32 INTERNALS
34 HISTORY
36 ******************************************************************************/
38 #include <exec/memory.h>
39 #include <proto/exec.h>
41 int main(void)
43 AvailMem(MEMF_CLEAR);
45 return 0;