aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/compat_stringlist.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2015-05-21 00:13:43 +0000
committerIngo Schwarze <schwarze@openbsd.org>2015-05-21 00:13:43 +0000
commite43d12315af414d2192a0778b1176e099ddfd990 (patch)
tree34d6aab7e8f0b40d2e3142b3cf0ed1f9274ece54 /compat_stringlist.c
parent9c16993c93e5ceff06a64877cca4cddac0874596 (diff)
downloadmandoc-e43d12315af414d2192a0778b1176e099ddfd990.tar.gz
mandoc-e43d12315af414d2192a0778b1176e099ddfd990.tar.zst
mandoc-e43d12315af414d2192a0778b1176e099ddfd990.zip
add forgotten glue
Diffstat (limited to 'compat_stringlist.c')
-rw-r--r--compat_stringlist.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/compat_stringlist.c b/compat_stringlist.c
index 570fcdd1..b3397168 100644
--- a/compat_stringlist.c
+++ b/compat_stringlist.c
@@ -1,4 +1,12 @@
-/* $Id: compat_stringlist.c,v 1.4 2015/05/20 23:43:03 schwarze Exp $ */
+#include "config.h"
+
+#if HAVE_STRINGLIST
+
+int dummy;
+
+#else
+
+/* $Id: compat_stringlist.c,v 1.5 2015/05/21 00:13:43 schwarze Exp $ */
/*
* Copyright (c) 1994 Christos Zoulas <christos@netbsd.org>
* All rights reserved.
@@ -105,3 +113,5 @@ sl_find(StringList *sl, const char *name)
return NULL;
}
+
+#endif