1
0
mirror of https://github.com/facebook/zstd.git synced 2025-07-29 11:21:22 +03:00

moved UTIL_DISPLAY() inside util.c

This commit is contained in:
Yann Collet
2019-11-26 15:21:58 -08:00
parent a684b82774
commit 7543cd055c
2 changed files with 10 additions and 6 deletions

View File

@ -92,8 +92,6 @@ extern "C" {
* Console log
******************************************/
extern int g_utilDisplayLevel;
#define UTIL_DISPLAY(...) fprintf(stderr, __VA_ARGS__)
#define UTIL_DISPLAYLEVEL(l, ...) { if (g_utilDisplayLevel>=l) { UTIL_DISPLAY(__VA_ARGS__); } }
/*-****************************************