summaryrefslogtreecommitdiffstats
path: root/man_argv.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-03-22 14:33:05 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-03-22 14:33:05 +0000
commitbedb65e1b9182d146e4d3dce643e0c4c85d91605 (patch)
tree50686973442539dc22d3e36067a57f7654128370 /man_argv.c
parent8e7ad1b45fbd89960778244082f52d4fc28b9f50 (diff)
downloadmandoc-bedb65e1b9182d146e4d3dce643e0c4c85d91605.tar.gz
libmdoc.h and libman.h were including mdoc.h and man.h, respectively.
Don't have them do that (includes in header files = faugh), and have individual files directly include these files.
Diffstat (limited to 'man_argv.c')
-rw-r--r--man_argv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/man_argv.c b/man_argv.c
index 6771e53c..2e22139e 100644
--- a/man_argv.c
+++ b/man_argv.c
@@ -22,11 +22,11 @@
#include <assert.h>
+#include "man.h"
#include "mandoc.h"
#include "libman.h"
#include "libmandoc.h"
-
int
man_args(struct man *m, int line, int *pos, char *buf, char **v)
{