diff options
author | Marijn van der Werf <marijn.vanderwerf@gmail.com> | 2016-12-01 03:51:24 +0100 |
---|---|---|
committer | YamaArashi <YamaArashi@users.noreply.github.com> | 2016-11-30 18:51:24 -0800 |
commit | 4258e60771aa9fdabd678930eca534423bd371b8 (patch) | |
tree | ecca2ee7641abc0562f39b6c7dd907af2184e102 /src/sound.c | |
parent | 831f8cd4fd94613d6b52d87df1b4903bedfaa717 (diff) |
Declare more non-static functions in header files (#111)
* Declare more non-static functions in header files
* Use `(void)` for functions without arguments.
* Move global-included data to seperate headers
* Don't import types or global in header
* Fix fieldmap imports
* Revert in-code changes
* Add missing newlines
Diffstat (limited to 'src/sound.c')
-rw-r--r-- | src/sound.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sound.c b/src/sound.c index 49ab78cc7..77ad2b9f6 100644 --- a/src/sound.c +++ b/src/sound.c @@ -1,8 +1,9 @@ #include "global.h" +#include "sound.h" #include "gba/m4a_internal.h" #include "task.h" -#include "sound.h" #include "songs.h" +#include "m4a.h" struct Fanfare { |