Reformat includes

This commit is contained in:
Drew Galbraith 2023-06-06 17:12:08 -07:00
parent 174d4b10fb
commit 41d25a7b46
4 changed files with 6 additions and 7 deletions

View File

@ -1,5 +1,5 @@
#include "include/mammoth/debug.h" #include "include/mammoth/debug.h"
#include "zcall.h" #include <zcall.h>
void dbgln(const char* str) { ZDebug(str); } void dbgln(const char* str) { ZDebug(str); }

View File

@ -1,6 +1,6 @@
#include "include/mammoth/thread.h" #include "include/mammoth/thread.h"
#include "zcall.h" #include <zcall.h>
namespace { namespace {

View File

@ -1,6 +1,5 @@
#include <zcall.h>
#include "zcall.h" #include <zerrors.h>
#include "zerrors.h"
constexpr uint64_t prog2 = 0x00000020'00000000; constexpr uint64_t prog2 = 0x00000020'00000000;

View File

@ -1,5 +1,5 @@
#include "mammoth/debug.h" #include <mammoth/debug.h>
#include "mammoth/thread.h" #include <mammoth/thread.h>
#define CHECK(expr) \ #define CHECK(expr) \
{ \ { \