Skip to content

Commit

Permalink
headers
Browse files Browse the repository at this point in the history
  • Loading branch information
hensldm committed Jul 20, 2024
1 parent 13866f6 commit 95e07db
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 8 deletions.
6 changes: 4 additions & 2 deletions include/gfxprint.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@
#define LIBU64_GFX_PRINT_H

#include "ultra64.h"
#include "color.h"
#include "aprintf.h"

#include "stdbool.h"

#include "aprintf.h"
#include "color.h"

typedef struct gfxprint {
/* 0x00 */ PrintCallback proutFunc; /* Current print out func */
/* 0x04 */ Gfx* gListp; /* Current display list to write text to */
Expand Down
1 change: 0 additions & 1 deletion include/segment_symbols.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#ifndef SEGMENT_SYMBOLS_H
#define SEGMENT_SYMBOLS_H

#include "ultra64.h"
#include "stdint.h"

#define DECLARE_VRAM_SEGMENT(name) \
Expand Down
4 changes: 3 additions & 1 deletion src/main/O2/math64.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#include "global.h"
#include "math64.h"

#include "math.h"

#include "fp.h"
#include "macros.h"

f32 Math_FTanF(f32 x) {
return sinf(x) / cosf(x);
Expand Down
4 changes: 3 additions & 1 deletion src/main/O2/stackcheck.c
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
#include "stackcheck.h"
#include "terminal.h"

#include "stdbool.h"
#include "stdint.h"

#include "terminal.h"

StackEntry* sStackInfoListStart = NULL;
StackEntry* sStackInfoListEnd = NULL;

Expand Down
2 changes: 1 addition & 1 deletion src/main/fault.c
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#include "fault.h"

#include "lib/ultralib/src/libc/xstdio.h"
#include "stdbool.h"
#include "stddef.h"
#include "stdint.h"
#include "PR/os_internal.h"
#include "lib/ultralib/src/libc/xstdio.h"

#include "global.h"

Expand Down
6 changes: 4 additions & 2 deletions src/main/vimode.c
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
#include "vimode.h"
#include "attributes.h"
#include "macros.h"

#include "stdbool.h"
#include "lib/ultralib/src/io/viint.h"

#include "attributes.h"
#include "macros.h"
#include "pad.h"

void ViMode_LogPrint(UNUSED OSViMode* osViMode) {
Expand Down

0 comments on commit 95e07db

Please sign in to comment.