about summary refs log tree commit diff
diff options
context:
space:
mode:
Diffstat (limited to '')
-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 {
4a2ebe50b5457&follow=1'>Fix termcap patch for background colorsJune McEnroe 2017-07-30Update helpJune McEnroe 2017-07-30Fix help to track colorJune McEnroe 2017-07-30Support background colorsJune McEnroe 2017-07-30Track color only client-sideJune McEnroe 2017-07-30Add ostensible support for background colorsJune McEnroe 2017-07-30Add tile create and access timestampsJune McEnroe 2017-07-30Assert stable struct Tile field offsetsJune McEnroe 2017-07-30Add chroot.shJune McEnroe 2017-07-30Add ` commandJune McEnroe 2017-07-30Add sshd_configJune McEnroe 2017-07-30Add termcap patchJune McEnroe