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/field_poison.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/field_poison.c')
-rw-r--r-- | src/field_poison.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/field_poison.c b/src/field_poison.c index a51fe5546..309ec1d71 100644 --- a/src/field_poison.c +++ b/src/field_poison.c @@ -1,14 +1,11 @@ #include "global.h" +#include "asm.h" #include "field_message_box.h" #include "pokemon.h" #include "script.h" #include "string_util.h" #include "task.h" -extern void AdjustFriendship(struct Pokemon *, u8); -extern u8 pokemon_ailments_get_primary(u32); -extern void DoFieldPoisonEffect(void); - extern struct Pokemon gPlayerParty[6]; extern u16 gScriptResult; extern u8 fieldPoisonText_PokemonFainted[]; |