[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[groff] 44/80: [soelim]: Align with modern groff conventions.
From: |
G. Branden Robinson |
Subject: |
[groff] 44/80: [soelim]: Align with modern groff conventions. |
Date: |
Sat, 30 Nov 2024 04:02:21 -0500 (EST) |
gbranden pushed a commit to branch master
in repository groff.
commit 14ce5e4eb433778e0b438cf0b330d8654a83050d
Author: G. Branden Robinson <g.branden.robinson@gmail.com>
AuthorDate: Wed Nov 27 21:52:48 2024 -0600
[soelim]: Align with modern groff conventions.
* src/preproc/soelim/soelim.cpp: Include system library headers before
local ones.
---
ChangeLog | 7 +++++++
src/preproc/soelim/soelim.cpp | 4 ++--
2 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index b4f08ae55..38b3a6454 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2024-11-27 G. Branden Robinson <g.branden.robinson@gmail.com>
+
+ [soelim]: Align with modern groff conventions.
+
+ * src/preproc/soelim/soelim.cpp: Include system library headers
+ before local ones.
+
2024-11-27 G. Branden Robinson <g.branden.robinson@gmail.com>
[refer]: Align with modern groff conventions.
diff --git a/src/preproc/soelim/soelim.cpp b/src/preproc/soelim/soelim.cpp
index 1653b1d4d..e2bb8b2a4 100644
--- a/src/preproc/soelim/soelim.cpp
+++ b/src/preproc/soelim/soelim.cpp
@@ -16,8 +16,6 @@ for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
-#include "lib.h"
-
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
@@ -27,6 +25,8 @@ along with this program. If not, see
<http://www.gnu.org/licenses/>. */
#include <errno.h>
#include <stdlib.h>
+#include "lib.h"
+
#include "errarg.h"
#include "error.h"
#include "stringclass.h"
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [groff] 44/80: [soelim]: Align with modern groff conventions.,
G. Branden Robinson <=