diff options
Diffstat (limited to 'src/string/bzero.c')
-rw-r--r-- | src/string/bzero.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/string/bzero.c b/src/string/bzero.c new file mode 100644 index 00000000..0f98b4a5 --- /dev/null +++ b/src/string/bzero.c @@ -0,0 +1,7 @@ +#include <string.h> +#include <strings.h> + +void bzero(void *s, size_t n) +{ + memset(s, 0, n); +} |