mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-18 13:38:12 +00:00
11 lines
170 B
C
11 lines
170 B
C
#ifndef TREZORHAL_SECBOOL_H
|
|
#define TREZORHAL_SECBOOL_H
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef uint32_t secbool;
|
|
#define sectrue 0xAAAAAAAAU
|
|
#define secfalse 0x00000000U
|
|
|
|
#endif
|