mirror of
https://github.com/cahirwpz/libnix.git
synced 2026-09-11 19:26:17 +00:00
7 lines
75 B
C
Executable File
7 lines
75 B
C
Executable File
#include <memory.h>
|
|
|
|
void bzero(void *b,size_t n)
|
|
{
|
|
memset(b, 0, n);
|
|
}
|