diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2015-11-07 14:22:29 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2015-11-07 14:22:29 +0000 |
commit | 0441e71e8746df106efe8cf9b9ecb18f0d0824a4 (patch) | |
tree | 0aa57fa5d44a7e5715b588f3ce0a8614eee46bd4 /term_ps.c | |
parent | 085945da2fe63d7a2b347a2d01602da22e90058f (diff) | |
download | mandoc-0441e71e8746df106efe8cf9b9ecb18f0d0824a4.tar.gz |
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 'term_ps.c')
-rw-r--r-- | term_ps.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -20,7 +20,9 @@ #include <sys/types.h> #include <assert.h> +#if HAVE_ERR #include <err.h> +#endif #include <stdarg.h> #include <stdint.h> #include <stdio.h> |