zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 790d439ce22888145e5a2c33052fe114b56049d4 (tree)
parent d3d3e4e374e47b275dd3e0483634852b2d0a56d8
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Thu, 31 Oct 2019 13:47:20 -0400

util.cpp: canonicalize the order of includes

Diffstat:
Msrc/util.cpp | 7+++----
1 file changed, 3 insertions(+), 4 deletions(-)

diff --git 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);