diff options
author | 2016-02-05 12:59:12 +0000 | |
---|---|---|
committer | 2016-02-05 12:59:12 +0000 | |
commit | 04adebf8aef97bdba833616d39c0f47b7b4e34e0 (patch) | |
tree | 7caac3cc42c60d9d4ac95f141ce8b936778d6c66 | |
parent | No need for pledge("rpath") (diff) | |
download | wireguard-openbsd-04adebf8aef97bdba833616d39c0f47b7b4e34e0.tar.xz wireguard-openbsd-04adebf8aef97bdba833616d39c0f47b7b4e34e0.zip |
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; |