diff options
author | Sebastian Benoit <benno@cvs.openbsd.org> | 2016-09-20 19:16:33 +0000 |
---|---|---|
committer | Sebastian Benoit <benno@cvs.openbsd.org> | 2016-09-20 19:16:33 +0000 |
commit | cba8eb1cfefc2aee2bfee9afd1da28af12996785 (patch) | |
tree | 107fa2ea055816e01a37c598e12e63df39a6d121 | |
parent | fba59f84560b7a25fb276bc19fcf5505552251ed (diff) |
reoorder includes,
noticed by & ok florian@
-rw-r--r-- | usr.sbin/acme-client/parse.y | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/acme-client/parse.y b/usr.sbin/acme-client/parse.y index 4b77ccea5f5..f56285361b6 100644 --- a/usr.sbin/acme-client/parse.y +++ b/usr.sbin/acme-client/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.1 2016/09/18 20:18:25 benno Exp $ */ +/* $OpenBSD: parse.y,v 1.2 2016/09/20 19:16:32 benno Exp $ */ /* * Copyright (c) 2016 Kristaps Dzonsons <kristaps@bsd.lv> @@ -24,17 +24,17 @@ */ %{ +#include <sys/types.h> +#include <sys/queue.h> +#include <sys/stat.h> #include <ctype.h> #include <err.h> #include <limits.h> -#include <sys/queue.h> #include <stdarg.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> -#include <sys/stat.h> -#include <sys/types.h> #include "parse.h" |