diff options
author | Uros Majstorovic <majstor@majstor.org> | 2018-03-15 18:34:31 +0100 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2018-03-15 18:34:31 +0100 |
commit | 2e711a0a5cbaeec7d3d5a742f8d536311d5d9677 (patch) | |
tree | a58084506592b55539828c6ad8fdec5a547f664c /code/ecp/core.h | |
parent | 81a3176b689c546118be81565bcce16f47faae6b (diff) |
fixed debug print; removed config.h
Diffstat (limited to 'code/ecp/core.h')
-rw-r--r-- | code/ecp/core.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/code/ecp/core.h b/code/ecp/core.h index 244df4d..b1a4e7f 100644 --- a/code/ecp/core.h +++ b/code/ecp/core.h @@ -3,8 +3,6 @@ #include <stdint.h> #include <string.h> -#include "config.h" - #ifdef ECP_WITH_PTHREAD #include <pthread.h> #endif @@ -133,9 +131,6 @@ typedef uint32_t ecp_seq_t; #ifdef ECP_DEBUG #include <stdio.h> -#define DPRINT(cnd, format, ...) { if (cnd) { fprintf (stderr, format, __VA_ARGS__); } } -#else -#define DPRINT(cnd, format, ...) {} #endif struct ECPBuffer; |