e3325749b63e42cbcacb30f77ff4eb8acbf50378
[rocksndiamonds.git] / src / game_sp / vb_lib.h
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 extern void *REDIM_1D(int, int, int);
14
15 extern long MyGetTickCount();
16
17 #endif /* VB_LIB_H */