22 lines
431 B
C
22 lines
431 B
C
|
/*
|
||
|
* rusefi_true.h
|
||
|
*
|
||
|
* @date Dec 8, 2018
|
||
|
* @author Andrey Belomutskiy, (c) 2012-2018
|
||
|
*/
|
||
|
|
||
|
#ifndef CONTROLLERS_ALGO_RUSEFI_TRUE_H_
|
||
|
#define CONTROLLERS_ALGO_RUSEFI_TRUE_H_
|
||
|
|
||
|
// we still have a minor mess with headers, this header should better be included as high as possible
|
||
|
|
||
|
#ifndef FALSE
|
||
|
#define FALSE (0)
|
||
|
#endif /* FALSE */
|
||
|
|
||
|
#ifndef TRUE
|
||
|
#define TRUE (!(FALSE))
|
||
|
#endif /* TRUE */
|
||
|
|
||
|
#endif /* CONTROLLERS_ALGO_RUSEFI_TRUE_H_ */
|