aboutsummaryrefslogtreecommitdiffstats
path: root/service/src/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'service/src/util.h')
-rw-r--r--service/src/util.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/service/src/util.h b/service/src/util.h
index e5e21de..2e2196f 100644
--- a/service/src/util.h
+++ b/service/src/util.h
@@ -10,6 +10,8 @@
#define MIN(x,y) ((x) > (y) ? (y) : (x))
#define NULLFREE(p) do { free(p); p = NULL; } while (0)
+#define MHASHLEN 32
+
enum { FAIL = 0, OK = 1 };
void* checkp(void *p);