Initial revision
This commit is contained in:
parent
5f7d5e8d18
commit
b2cfc4e2e7
242 changed files with 18177 additions and 0 deletions
14
src/lib9/mallocz.c
Normal file
14
src/lib9/mallocz.c
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#include <unistd.h>
|
||||
#include <string.h>
|
||||
#include <lib9.h>
|
||||
|
||||
void*
|
||||
mallocz(unsigned long n, int clr)
|
||||
{
|
||||
void *v;
|
||||
|
||||
v = malloc(n);
|
||||
if(clr && v)
|
||||
memset(v, 0, n);
|
||||
return v;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue