Sign in
fuchsia
/
third_party
/
etnaviv_gpu_tests
/
1ba75b28b0a6a1620f97884ed87f0b486c3b9baa
/
.
/
src
/
memutil.h
blob: ccd6ae36bd2e163f961aa9a2f023e3830a225815 [
file
] [
log
] [
blame
]
#ifndef
H_MEMUTIL
#define
H_MEMUTIL
#include
<stdlib.h>
#define
ARRAY_SIZE
(
arr
)
(
sizeof
(
arr
)
/
sizeof
((
arr
)[
0
]))
#define
CALLOC_STRUCT
(
T
)
(
struct
T
*)
calloc
(
1
,
sizeof
(
struct
T
))
#endif