Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 May 2015 08:20:43 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r283195 - head/usr.bin/soelim
Message-ID:  <201505210820.t4L8Kh0f042862@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Thu May 21 08:20:42 2015
New Revision: 283195
URL: https://svnweb.freebsd.org/changeset/base/283195

Log:
  sort headers

Modified:
  head/usr.bin/soelim/soelim.c

Modified: head/usr.bin/soelim/soelim.c
==============================================================================
--- head/usr.bin/soelim/soelim.c	Thu May 21 07:50:56 2015	(r283194)
+++ head/usr.bin/soelim/soelim.c	Thu May 21 08:20:42 2015	(r283195)
@@ -29,15 +29,15 @@ __FBSDID("$FreeBSD$");
 
 #include <sys/param.h>
 
+#include <ctype.h>
+#include <err.h>
+#include <stdbool.h>
 #define _WITH_GETLINE
 #include <stdio.h>
-#include <unistd.h>
 #include <stdlib.h>
-#include <stdbool.h>
 #include <string.h>
 #include <stringlist.h>
-#include <err.h>
-#include <ctype.h>
+#include <unistd.h>
 
 #define C_OPTION 0x1
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505210820.t4L8Kh0f042862>