rusefi-1/firmware/util/rusefi_true.h

19 lines
318 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
*/
2020-04-01 18:32:21 -07:00
#pragma once
2018-12-08 14:19:20 -08:00
// 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 */