mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-12 18:49:07 +00:00
9 lines
107 B
C
9 lines
107 B
C
#ifndef __MEMZERO_H__
|
|
#define __MEMZERO_H__
|
|
|
|
#include <stddef.h>
|
|
|
|
void memzero(void *s, size_t n);
|
|
|
|
#endif
|