diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-03-22 14:33:05 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-03-22 14:33:05 +0000 |
commit | bedb65e1b9182d146e4d3dce643e0c4c85d91605 (patch) | |
tree | 50686973442539dc22d3e36067a57f7654128370 /man_macro.c | |
parent | 8e7ad1b45fbd89960778244082f52d4fc28b9f50 (diff) | |
download | mandoc-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_macro.c')
-rw-r--r-- | man_macro.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/man_macro.c b/man_macro.c index c5149b81..f10a32ea 100644 --- a/man_macro.c +++ b/man_macro.c @@ -23,6 +23,7 @@ #include <stdlib.h> #include <string.h> +#include "man.h" #include "mandoc.h" #include "libmandoc.h" #include "libman.h" |