mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-16 04:29:08 +00:00
15 lines
243 B
C
15 lines
243 B
C
#ifndef TREZORHAL_SECBOOL_H
|
|
#define TREZORHAL_SECBOOL_H
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef uint32_t secbool;
|
|
#define sectrue 0xAAAAAAAAU
|
|
#define secfalse 0x00000000U
|
|
|
|
#ifndef __wur
|
|
#define __wur __attribute__ ((warn_unused_result))
|
|
#endif
|
|
|
|
#endif
|