mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-22 15:38:11 +00:00
fix typo
This commit is contained in:
parent
83a34ff925
commit
77ff5a1c55
2
util.h
2
util.h
@ -26,7 +26,7 @@
|
||||
#include <libopencm3/cm3/vector.h>
|
||||
|
||||
// Statement expressions make these macros side-effect safe
|
||||
#define MIN(a, b) ({ typeof(a) _a = (a); typeof(b) _b = (b); _a > _b ? _a : _b; })
|
||||
#define MIN(a, b) ({ typeof(a) _a = (a); typeof(b) _b = (b); _a < _b ? _a : _b; })
|
||||
#define MAX(a, b) ({ typeof(a) _a = (a); typeof(b) _b = (b); _a > _b ? _a : _b; })
|
||||
|
||||
void delay(uint32_t wait);
|
||||
|
Loading…
Reference in New Issue
Block a user