aboutsummaryrefslogtreecommitdiffstats
path: root/src/ckutil.h
diff options
context:
space:
mode:
authorAnastasis Grammenos <anastasis.gramm2@gmail.com>2018-10-25 12:38:34 +0300
committerAnastasis Grammenos <anastasis.gramm2@gmail.com>2018-10-25 12:38:34 +0300
commitd29c929e444d69ea7d4ce146f67f4c8df36baa95 (patch)
tree7f79ce61f0826b151ee4a1108c4b307afc953d15 /src/ckutil.h
parent041274604961bc5633c70f9c3db90f46117c508e (diff)
downloadck-d29c929e444d69ea7d4ce146f67f4c8df36baa95.tar.gz
ck-d29c929e444d69ea7d4ce146f67f4c8df36baa95.tar.bz2
ck-d29c929e444d69ea7d4ce146f67f4c8df36baa95.zip
Don't forward declare enumerations
Diffstat (limited to 'src/ckutil.h')
-rw-r--r--src/ckutil.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ckutil.h b/src/ckutil.h
index a16a5de..dde7665 100644
--- a/src/ckutil.h
+++ b/src/ckutil.h
@@ -20,10 +20,11 @@
/*******************/
#include <stdio.h>
+#include <limits.h>
#include <stdlib.h>
#include <string.h>
-#define PRINT_ERR(ERROR) \
+#define PRINT_ERR(ERROR) \
printf("--[ Error ]--\n%s\n", ERROR);
#define UNUSED(x) (void)(x)