diff options
author | Marijn van der Werf <marijn.vanderwerf@gmail.com> | 2016-12-02 19:06:22 +0100 |
---|---|---|
committer | YamaArashi <YamaArashi@users.noreply.github.com> | 2016-12-02 10:06:22 -0800 |
commit | 1f222c04ef1d10ff5a5c6bb98cd4380ecf2bba86 (patch) | |
tree | 573d6368233110b17292e498f49532c1c9244404 /src/wallclock.c | |
parent | 4258e60771aa9fdabd678930eca534423bd371b8 (diff) |
[WIP] Extract all external function declarations to headers (#114)
* Extract other external function declarations
* Fix GBA compilation
* Revert `sub_803C434` to asm
Diffstat (limited to 'src/wallclock.c')
-rw-r--r-- | src/wallclock.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/wallclock.c b/src/wallclock.c index e41bf761d..abfc4a12a 100644 --- a/src/wallclock.c +++ b/src/wallclock.c @@ -1,5 +1,6 @@ #include "global.h" #include "wallclock.h" +#include "asm.h" #include "decompress.h" #include "main.h" #include "menu.h" @@ -10,9 +11,6 @@ #include "trig.h" #include "sound.h" -//Functions that need to be put in headers -void remove_some_task(void); - extern u16 gSpecialVar_0x8004; extern u16 gMiscClockMale_Pal[]; extern u16 gMiscClockFemale_Pal[]; |