Code formatting + st refactoring.
This commit is contained in:
parent
b5878fc205
commit
e15f7fb669
28 changed files with 5853 additions and 6321 deletions
|
@ -6,14 +6,14 @@
|
|||
|
||||
#include <string.h>
|
||||
|
||||
__attribute__((weak)) void
|
||||
__attribute__((weak)) void
|
||||
__explicit_bzero_hook(void *buf, size_t len)
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
void
|
||||
explicit_bzero(void *buf, size_t len)
|
||||
{
|
||||
memset(buf, 0, len);
|
||||
__explicit_bzero_hook(buf, len);
|
||||
memset(buf, 0, len);
|
||||
__explicit_bzero_hook(buf, len);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue