1 /*++
2 Copyright (c) 2006 Microsoft Corporation
3 
4 Module Name:
5 
6     tst_region.cpp
7 
8 Abstract:
9 
10     Test region memory allocator.
11 
12 Author:
13 
14     Leonardo de Moura (leonardo) 2006-09-14.
15 
16 Revision History:
17 
18 --*/
19 #include<stdlib.h>
20 #include "util/region.h"
21 
tst1()22 static void tst1() {
23     // TODO
24 }
25 
tst_region()26 void tst_region() {
27     tst1();
28 }
29 
30