ODeV framework  v2
systypes.h
Go to the documentation of this file.
1 
31 #ifndef SYSTYPES_H_
32 #define SYSTYPES_H_
33 
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37 
38 
39 typedef enum {
40  FALSE = 0,
41  TRUE = !FALSE
42 } boolean_t;
43 
44 
45 #ifdef __cplusplus
46 }
47 #endif
48 
49 
50 #endif /* SYSTYPES_H_ */