Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
wireless
/
wireless-testing
/
aa18d5769fcafe645a3ba01a9a69dde4f8dc8cc3
/
.
/
tools
/
lib
/
zalloc.c
blob: 9c856d59f56e5042fb1af677efa33a3ee4617145 [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: LGPL-2.1
#include
<stdlib.h>
#include
<linux/zalloc.h>
void
*
zalloc
(
size_t
size
)
{
return
calloc
(
1
,
size
);
}
void
__zfree
(
void
**
ptr
)
{
free
(*
ptr
);
*
ptr
=
NULL
;
}