1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-18 12:28:09 +00:00

secbool: add unsigned literal suffixes

This commit is contained in:
mcudev 2017-10-30 13:31:31 -04:00 committed by Pavol Rusnak
parent 7e01a733a3
commit edd95d9b65

View File

@ -4,7 +4,7 @@
#include <stdint.h>
typedef uint32_t secbool;
#define sectrue 0xAAAAAAAA
#define secfalse 0x00000000
#define sectrue 0xAAAAAAAAU
#define secfalse 0x00000000U
#endif