authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-10-31 13:47:20-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-10-31 13:47:20-04:00
log790d439ce22888145e5a2c33052fe114b56049d4
tree962b8ed8c890eb5adc04803a180632869235a979
parentd3d3e4e374e47b275dd3e0483634852b2d0a56d8
signaturelock-open Commit is signed but in an unrecognized format.

util.cpp: canonicalize the order of includes


1 files changed, 3 insertions(+), 4 deletions(-)

src/util.cpp+3-4
...@@ -5,13 +5,12 @@...@@ -5,13 +5,12 @@
5 * See http://opensource.org/licenses/MIT5 * See http://opensource.org/licenses/MIT
6 */6 */
77
8#include <stdlib.h>
9#include <stdio.h>
10#include <stdarg.h>
11
12#include "util.hpp"8#include "util.hpp"
13#include "userland.h"9#include "userland.h"
1410
11#include <stdio.h>
12#include <stdarg.h>
13
15void zig_panic(const char *format, ...) {14void zig_panic(const char *format, ...) {
16 va_list ap;15 va_list ap;
17 va_start(ap, format);16 va_start(ap, format);