1 // ----------------------------------------------------------------------------
2 // vb_lib.h
3 // ----------------------------------------------------------------------------
4 
5 #ifndef VB_LIB_H
6 #define VB_LIB_H
7 
8 #define Abs(x)	ABS(x)
9 #define Sqr(x)	sqrt(x)
10 
11 
12 /* helper functions for constructs not supported by C */
13 
14 #if 0
15 extern void *REDIM_1D(int, int, int);
16 #endif
17 
18 extern long MyGetTickCount();
19 
20 #endif /* VB_LIB_H */
21