fome-fw/firmware/util/rusefi_true.h

22 lines
431 B
C
Raw Normal View History

2018-12-08 14:19:20 -08:00
/*
* rusefi_true.h
*
* @date Dec 8, 2018
2020-01-13 18:57:43 -08:00
* @author Andrey Belomutskiy, (c) 2012-2020
2018-12-08 14:19:20 -08:00
*/
#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_ */