aboutsummaryrefslogtreecommitdiff
path: root/shared/bool.h
blob: 4ffb6b4a384a5d41f67f6e175fe2161e56b06582 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include <stdint.h>

/** @file bool.h */

#ifndef bool
typedef uint8_t bool;
#define false 0 /* NOLINT */
#define true 1	/* NOLINT */
#endif