diff options
author | twinaphex | 2020-10-04 02:42:04 +0200 |
---|---|---|
committer | twinaphex | 2020-10-04 02:42:04 +0200 |
commit | 8f1b7db6e2a75a08c701952ac756f8f4abb2aaba (patch) | |
tree | f55899cdd5a8ec1006ce91581f5d078eda78e16d | |
parent | 0dcafe459f06f00a4ca9cd0b54761c5b43ceeec5 (diff) | |
download | snes9x2005-8f1b7db6e2a75a08c701952ac756f8f4abb2aaba.tar.gz snes9x2005-8f1b7db6e2a75a08c701952ac756f8f4abb2aaba.tar.bz2 snes9x2005-8f1b7db6e2a75a08c701952ac756f8f4abb2aaba.zip |
Cleanups
-rw-r--r-- | source/dsp1emu.c | 1 | ||||
-rw-r--r-- | source/fxemu.c | 1 | ||||
-rw-r--r-- | source/fxinst.c | 1 | ||||
-rw-r--r-- | source/memmap.c | 1 | ||||
-rw-r--r-- | source/snes9x.h | 1 | ||||
-rw-r--r-- | source/soundux.c | 1 |
6 files changed, 1 insertions, 5 deletions
diff --git a/source/dsp1emu.c b/source/dsp1emu.c index e7c3f7d..76df362 100644 --- a/source/dsp1emu.c +++ b/source/dsp1emu.c @@ -1,6 +1,5 @@ #include "../copyright" -#include <stdio.h> #include <stdarg.h> #include <math.h> #include <string.h> diff --git a/source/fxemu.c b/source/fxemu.c index 9d62b05..17102c9 100644 --- a/source/fxemu.c +++ b/source/fxemu.c @@ -4,7 +4,6 @@ #include "fxinst.h" #include <stdlib.h> #include <string.h> -#include <stdio.h> #include <retro_inline.h> diff --git a/source/fxinst.c b/source/fxinst.c index 7b79cd5..6912bde 100644 --- a/source/fxinst.c +++ b/source/fxinst.c @@ -3,7 +3,6 @@ #include "fxemu.h" #include "fxinst.h" #include <string.h> -#include <stdio.h> #include <retro_inline.h> diff --git a/source/memmap.c b/source/memmap.c index 5f7d84a..9fda545 100644 --- a/source/memmap.c +++ b/source/memmap.c @@ -1,5 +1,6 @@ #include "../copyright" +#include <stdio.h> #include <string.h> #ifdef HAVE_STRINGS_H #include <strings.h> diff --git a/source/snes9x.h b/source/snes9x.h index ad410e1..6dd2e8f 100644 --- a/source/snes9x.h +++ b/source/snes9x.h @@ -3,7 +3,6 @@ #ifndef _SNES9X_H_ #define _SNES9X_H_ -#include <stdio.h> #include <stdlib.h> #include <stdint.h> diff --git a/source/soundux.c b/source/soundux.c index ebf6915..42098ed 100644 --- a/source/soundux.c +++ b/source/soundux.c @@ -3,7 +3,6 @@ #ifndef USE_BLARGG_APU #include <stdlib.h> -#include <stdio.h> #include <string.h> #include <errno.h> |