=================================================================== RCS file: /cvs/mandoc/att.c,v retrieving revision 1.13 retrieving revision 1.17 diff -u -p -r1.13 -r1.17 --- mandoc/att.c 2014/11/28 18:57:31 1.13 +++ mandoc/att.c 2018/12/13 07:30:21 1.17 @@ -1,4 +1,4 @@ -/* $Id: att.c,v 1.13 2014/11/28 18:57:31 schwarze Exp $ */ +/* $Id: att.c,v 1.17 2018/12/13 07:30:21 schwarze Exp $ */ /* * Copyright (c) 2009 Kristaps Dzonsons * @@ -19,7 +19,8 @@ #include #include -#include "mdoc.h" +#include "mandoc.h" +#include "roff.h" #include "libmdoc.h" #define LINE(x, y) \ @@ -45,5 +46,5 @@ mdoc_a2att(const char *p) LINE("V.3", "AT&T System\\~V Release\\~3 UNIX"); LINE("V.4", "AT&T System\\~V Release\\~4 UNIX"); - return(NULL); + return NULL; }