defaultCustomNULL replaced with defaultCustomMem

This commit is contained in:
inikep
2016-06-03 13:28:20 +02:00
parent 36fac00149
commit 3763c77f6b
5 changed files with 5 additions and 6 deletions
+1 -2
View File
@@ -259,6 +259,5 @@ int ZSTD_isSkipFrame(ZSTD_DCtx* dctx);
void* ZSTD_defaultAllocFunction(void* opaque, size_t size);
void ZSTD_defaultFreeFunction(void* opaque, void* address);
static ZSTD_customMem const defaultCustomMem = { ZSTD_defaultAllocFunction, ZSTD_defaultFreeFunction, NULL };
static ZSTD_customMem const defaultCustomNULL = { NULL, NULL, NULL };
#endif /* ZSTD_CCOMMON_H_MODULE */