aboutsummaryrefslogtreecommitdiff
path: root/src/util.cpp
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2019-10-31 13:47:20 -0400
committerAndrew Kelley <andrew@ziglang.org>2019-10-31 13:47:20 -0400
commit790d439ce22888145e5a2c33052fe114b56049d4 (patch)
tree962b8ed8c890eb5adc04803a180632869235a979 /src/util.cpp
parentd3d3e4e374e47b275dd3e0483634852b2d0a56d8 (diff)
downloadzig-790d439ce22888145e5a2c33052fe114b56049d4.tar.gz
zig-790d439ce22888145e5a2c33052fe114b56049d4.zip
util.cpp: canonicalize the order of includes
Diffstat (limited to 'src/util.cpp')
-rw-r--r--src/util.cpp7
1 files 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 <stdlib.h>
-#include <stdio.h>
-#include <stdarg.h>
-
#include "util.hpp"
#include "userland.h"
+#include <stdio.h>
+#include <stdarg.h>
+
void zig_panic(const char *format, ...) {
va_list ap;
va_start(ap, format);