summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremie Courreges-Anglas <jca@cvs.openbsd.org>2016-02-05 12:59:13 +0000
committerJeremie Courreges-Anglas <jca@cvs.openbsd.org>2016-02-05 12:59:13 +0000
commitfc22dc82119d55f8462521cc4dc032de3356a98b (patch)
tree392f20e6fd6a0f556eac4d0130803369c6000871
parent637bbaa20b5c61c41b072937dbae64c48fada107 (diff)
Sort includes.
-rw-r--r--usr.bin/locale/locale.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/locale/locale.c b/usr.bin/locale/locale.c
index 8cc960e7fe9..e73cb0df862 100644
--- a/usr.bin/locale/locale.c
+++ b/usr.bin/locale/locale.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: locale.c,v 1.11 2016/02/05 12:58:33 jca Exp $ */
+/* $OpenBSD: locale.c,v 1.12 2016/02/05 12:59:12 jca Exp $ */
/*
* Copyright (c) 2013 Stefan Sperling <stsp@openbsd.org>
*
@@ -15,12 +15,12 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#include <err.h>
+#include <locale.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <locale.h>
#include <unistd.h>
-#include <err.h>
extern char *__progname;