Sign in
fuchsia
/
third_party
/
etnaviv_gpu_tests
/
8ab6afa9c17ba66d9000a4472e344b8a83890e04
/
.
/
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