mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-15 20:19:23 +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
|