summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--database.h1
-rw-r--r--unscoop.c2
2 files changed, 1 insertions, 2 deletions
diff --git a/database.h b/database.h
index 1299ab0..6d705db 100644
--- a/database.h
+++ b/database.h
@@ -26,6 +26,7 @@
 #include <sysexits.h>
 
 #define SQL(...) #__VA_ARGS__
+#define ARRAY_LEN(a) (sizeof(a) / sizeof((a)[0]))
 
 #define DATABASE_PATH "litterbox/litterbox.sqlite"
 
diff --git a/unscoop.c b/unscoop.c
index f2d79cb..5aecf19 100644
--- a/unscoop.c
+++ b/unscoop.c
@@ -28,8 +28,6 @@
 
 #include "database.h"
 
-#define ARRAY_LEN(a) (sizeof(a) / sizeof((a)[0]))
-
 enum { ParamCap = 8 };
 
 struct Matcher {