]> git.cameronkatri.com Git - mandoc.git/blobdiff - compat_stringlist.c
If man(7) next-line scope is open and the line ends with \c,
[mandoc.git] / compat_stringlist.c
index 570fcdd11259d01848ba4f8e7dfd3a864910430c..17eba7724af5a39a4c947a1f82a3045c1c7acb4b 100644 (file)
@@ -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.6 2015/11/07 14:22:29 schwarze Exp $       */
 /*
  * Copyright (c) 1994 Christos Zoulas <christos@netbsd.org>
  * All rights reserved.
@@ -25,7 +33,9 @@
  * SUCH DAMAGE.
  */
 
+#if HAVE_ERR
 #include <err.h>
+#endif
 #include <stdlib.h>
 #include <string.h>
 #include "compat_stringlist.h"
@@ -105,3 +115,5 @@ sl_find(StringList *sl, const char *name)
 
        return NULL;
 }
+
+#endif