TORCS  1.3.9
The Open Racing Car Simulator
real.h
Go to the documentation of this file.
1 #ifndef REAL_H
2 #define REAL_H
3 
4 #ifdef real
5 
6 #error "Real already defined in another header! Binaries might not link properly!"
7 
8 #else /* real */
9 
10 #ifdef USE_DOUBLE
11 typedef double real;
12 #else /* USE_DOUBLE */
13 typedef float real;
14 #endif /* USE_DOUBLE */
15 
16 #endif /* real */
17 
18 
19 #endif /* REAL_H */
float real
Definition: real.h:13