mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-16 04:29:08 +00:00
7 lines
97 B
C
7 lines
97 B
C
|
#ifndef __MACROS_H__
|
||
|
#define __MACROS_H__
|
||
|
|
||
|
#define MEMSET_BZERO(p,l) memset((p), 0, (l))
|
||
|
|
||
|
#endif
|