Commit 790d439ce2

Andrew Kelley <andrew@ziglang.org>
2019-10-31 18:47:20
util.cpp: canonicalize the order of includes
1 parent d3d3e4e
Changed files (1)
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);