Sign in
fuchsia
/
third_party
/
github.com
/
stedolan
/
jq
/
refs/tags/jq-1.2
/
.
/
jv_alloc.h
blob: 0613d5877a922a0c3829852f31cb14240a324a25 [
file
] [
log
] [
blame
]
#ifndef
JV_ALLOC_H
#define
JV_ALLOC_H
#include
<stddef.h>
void
*
jv_mem_alloc
(
size_t
);
void
jv_mem_free
(
void
*);
__attribute__
((
warn_unused_result
))
void
*
jv_mem_realloc
(
void
*,
size_t
);
#endif