From 790d439ce22888145e5a2c33052fe114b56049d4 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Thu, 31 Oct 2019 13:47:20 -0400 Subject: [PATCH] util.cpp: canonicalize the order of includes --- src/util.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/util.cpp b/src/util.cpp index 055d572010..d3dc57e098 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -5,13 +5,12 @@ * See http://opensource.org/licenses/MIT */ -#include -#include -#include - #include "util.hpp" #include "userland.h" +#include +#include + void zig_panic(const char *format, ...) { va_list ap; va_start(ap, format);