libroff depends on libmandoc and so libmandoc should be included first.
authordaniel <daniel@openbsd.org>
Tue, 19 Aug 2014 05:18:16 +0000 (05:18 +0000)
committerdaniel <daniel@openbsd.org>
Tue, 19 Aug 2014 05:18:16 +0000 (05:18 +0000)
this change makes the code slightly more portable by removing a gcc
extension (incomplete enum types) which is not part of ISO C.

ok schwarze@

usr.bin/mandoc/roff.c

index 776e4c0..35f9133 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: roff.c,v 1.97 2014/08/08 15:54:10 schwarze Exp $ */
+/*     $Id: roff.c,v 1.98 2014/08/19 05:18:16 daniel Exp $ */
 /*
  * Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010-2014 Ingo Schwarze <schwarze@openbsd.org>
@@ -23,8 +23,8 @@
 
 #include "mandoc.h"
 #include "mandoc_aux.h"
-#include "libroff.h"
 #include "libmandoc.h"
+#include "libroff.h"
 
 /* Maximum number of nested if-else conditionals. */
 #define        RSTACK_MAX      128