util.cpp: canonicalize the order of includes

This commit is contained in:
Andrew Kelley 2019-10-31 13:47:20 -04:00
parent d3d3e4e374
commit 790d439ce2
No known key found for this signature in database
GPG Key ID: 7C5F548F728501A9

View File

@ -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);