Code formatting + st refactoring.

This commit is contained in:
Bartek Stalewski 2022-06-12 11:58:28 +02:00
parent b5878fc205
commit e15f7fb669
28 changed files with 5853 additions and 6321 deletions

View file

@ -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);
}