diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2015-05-21 00:13:43 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2015-05-21 00:13:43 +0000 |
commit | 19a266be9cf1be5e9c840f8a71f759f362caa9f9 (patch) | |
tree | 6b2c62afdd8df0fff5a1e23eb0d5643ebd5d2580 | |
parent | a0801b64b2ae200e8f711c4a124b4bd58ea37053 (diff) | |
download | mandoc-19a266be9cf1be5e9c840f8a71f759f362caa9f9.tar.gz |
add forgotten glue
-rw-r--r-- | compat_stringlist.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/compat_stringlist.c b/compat_stringlist.c index b265b602..f283a640 100644 --- a/compat_stringlist.c +++ b/compat_stringlist.c @@ -1,3 +1,11 @@ +#include "config.h" + +#if HAVE_STRINGLIST + +int dummy; + +#else + /* $Id$ */ /* * Copyright (c) 1994 Christos Zoulas <christos@netbsd.org> @@ -105,3 +113,5 @@ sl_find(StringList *sl, const char *name) return NULL; } + +#endif |