diff options
author | Bradley Taunt <bt@btxx.org> | 2024-01-17 19:44:16 -0500 |
---|---|---|
committer | Bradley Taunt <bt@btxx.org> | 2024-01-17 19:44:16 -0500 |
commit | c47aa4c4279beb700ec18c83fcf74aafc77d76a4 (patch) | |
tree | 76692ddf485c4453b366ce8df41e35c879cac9d3 /slockf/explicit_bzero.c |
Initial commit to cgit and place all suckless programs within installer
Diffstat (limited to 'slockf/explicit_bzero.c')
-rwxr-xr-x | slockf/explicit_bzero.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/slockf/explicit_bzero.c b/slockf/explicit_bzero.c new file mode 100755 index 0000000..3e33ca8 --- /dev/null +++ b/slockf/explicit_bzero.c @@ -0,0 +1,19 @@ +/* $OpenBSD: explicit_bzero.c,v 1.3 2014/06/21 02:34:26 matthew Exp $ */ +/* + * Public domain. + * Written by Matthew Dempsky. + */ + +#include <string.h> + +__attribute__((weak)) void +__explicit_bzero_hook(void *buf, size_t len) +{ +} + +void +explicit_bzero(void *buf, size_t len) +{ + memset(buf, 0, len); + __explicit_bzero_hook(buf, len); +} |