This commit is contained in:
Tino Reichardt
2016-06-26 10:10:52 +02:00
parent 5bce54c26e
commit 2542318d0e
4 changed files with 5 additions and 1173 deletions

View File

@@ -46,8 +46,12 @@ extern "C" {
***************************************/
#include "zstd_static.h" /* ZSTD_parameters */
#include "zbuff.h"
#include "zstd_internal.h" /* MIN */
/*-*************************************
* Common macros
***************************************/
#define MIN(a,b) ((a)<(b) ? (a) : (b))
#define MAX(a,b) ((a)>(b) ? (a) : (b))
/* *************************************
* Advanced Streaming functions

View File

@@ -41,13 +41,6 @@
#include "zstd.h"
/*-*************************************
* Common macros
***************************************/
#define MIN(a,b) ((a)<(b) ? (a) : (b))
#define MAX(a,b) ((a)>(b) ? (a) : (b))
/*-*************************************
* Common constants
***************************************/