libCom: Make yajl_alloc.h usable

This commit is contained in:
Andrew Johnson
2016-08-10 12:19:53 -05:00
parent c01967d64f
commit dafe2a83a3
2 changed files with 2 additions and 1 deletions

View File

@@ -13,6 +13,7 @@ SRC_DIRS += $(LIBCOM)/yacc
# Yet Another JSON Library
SRC_DIRS += $(LIBCOM)/yajl
INC += yajl_alloc.h
INC += yajl_common.h
INC += yajl_gen.h
INC += yajl_parse.h

View File

@@ -45,6 +45,6 @@
#define YA_FREE(afs, ptr) (afs)->free((afs)->ctx, (ptr))
#define YA_REALLOC(afs, ptr, sz) (afs)->realloc((afs)->ctx, (ptr), (sz))
void yajl_set_default_alloc_funcs(yajl_alloc_funcs * yaf);
YAJL_API void yajl_set_default_alloc_funcs(yajl_alloc_funcs * yaf);
#endif