fixed compiler warnings (after adding "-Wstrict-prototypes")
[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
14 extern int MyGetTickCount(void);
15
16 #endif /* VB_LIB_H */