diff options
author | Jeremie Courreges-Anglas <jca@cvs.openbsd.org> | 2016-02-05 12:59:13 +0000 |
---|---|---|
committer | Jeremie Courreges-Anglas <jca@cvs.openbsd.org> | 2016-02-05 12:59:13 +0000 |
commit | fc22dc82119d55f8462521cc4dc032de3356a98b (patch) | |
tree | 392f20e6fd6a0f556eac4d0130803369c6000871 | |
parent | 637bbaa20b5c61c41b072937dbae64c48fada107 (diff) |
Sort includes.
-rw-r--r-- | usr.bin/locale/locale.c | 6 |
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; |