1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 18:39:05 +00:00
trezor-firmware/embed/trezorhal/secbool.h

15 lines
243 B
C
Raw Normal View History

#ifndef TREZORHAL_SECBOOL_H
#define TREZORHAL_SECBOOL_H
#include <stdint.h>
typedef uint32_t secbool;
2017-10-30 17:31:31 +00:00
#define sectrue 0xAAAAAAAAU
#define secfalse 0x00000000U
2017-12-16 16:54:04 +00:00
#ifndef __wur
#define __wur __attribute__ ((warn_unused_result))
#endif
#endif