1
0
mirror of https://github.com/facebook/zstd.git synced 2025-08-08 17:22:10 +03:00

Merged fse_static into fse.h . Now requires FSE_STATIC_LINKING_ONLY macro.

This commit is contained in:
Yann Collet
2016-06-05 00:58:01 +02:00
parent 130fe11394
commit d0e2cd15cb
9 changed files with 364 additions and 402 deletions

View File

@@ -28,13 +28,13 @@
#include "util.h" /* Compiler options, UTIL_GetFileSize */
#include <stdlib.h> /* malloc */
#include <stdio.h> /* fprintf, fopen, ftello64 */
#include <string.h> /* strcmp */
#include <time.h> /* clock_t, clock, CLOCKS_PER_SEC */
#include "mem.h"
#define ZSTD_STATIC_LINKING_ONLY /* ZSTD_compressContinue */
#define ZSTD_STATIC_LINKING_ONLY /* ZSTD_compressBegin, ZSTD_compressContinue, etc. */
#include "zstd.h" /* ZSTD_VERSION_STRING */
#include "fse_static.h"
#define FSE_STATIC_LINKING_ONLY /* FSE_DTABLE_SIZE_U32 */
#include "fse.h"
#include "zbuff.h"
#include "datagen.h"
@@ -545,4 +545,3 @@ int main(int argc, const char** argv)
return result;
}