aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mansearch.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2015-11-07 14:22:29 +0000
committerIngo Schwarze <schwarze@openbsd.org>2015-11-07 14:22:29 +0000
commitb897019f5696c540f454bcb428d44ad31ef65559 (patch)
tree87824c81350783a7291c72cb46f46ac90518d9e0 /mansearch.c
parente7e94cd5a1663f3e3046a449030b33f9bd0dba7b (diff)
downloadmandoc-b897019f5696c540f454bcb428d44ad31ef65559.tar.gz
mandoc-b897019f5696c540f454bcb428d44ad31ef65559.tar.zst
mandoc-b897019f5696c540f454bcb428d44ad31ef65559.zip
Without HAVE_ERR, don't try to include <err.h>, it probably isn't there.
In that case, the required prototypes are in "config.h". Patch from Peter Bray <pdb_ml at yahoo dot com dot au>.
Diffstat (limited to 'mansearch.c')
-rw-r--r--mansearch.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/mansearch.c b/mansearch.c
index 756a73f9..9832d577 100644
--- a/mansearch.c
+++ b/mansearch.c
@@ -1,4 +1,4 @@
-/* $Id: mansearch.c,v 1.61 2015/11/06 21:19:09 schwarze Exp $ */
+/* $Id: mansearch.c,v 1.62 2015/11/07 14:22:29 schwarze Exp $ */
/*
* Copyright (c) 2012 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2013, 2014, 2015 Ingo Schwarze <schwarze@openbsd.org>
@@ -21,7 +21,9 @@
#include <sys/types.h>
#include <assert.h>
+#if HAVE_ERR
#include <err.h>
+#endif
#include <errno.h>
#include <fcntl.h>
#include <getopt.h>