libfirmware/util/include/rusefi/true_false.h

10 lines
121 B
C

#pragma once
#ifndef FALSE
#define FALSE (0)
#endif /* FALSE */
#ifndef TRUE
#define TRUE (!(FALSE))
#endif /* TRUE */