mirror of
https://github.com/libretro/libretro-fceumm.git
synced 2025-04-01 10:41:50 +00:00
Cut down on stdio.h includes
This commit is contained in:
parent
b99ac9fe9b
commit
a918869c18
@ -1,3 +1,4 @@
|
||||
#include <stdio.h>
|
||||
#include "__serial.h"
|
||||
|
||||
#if defined(_WIN32) && !defined(_XBOX) && !defined(__LIBRETRO__)
|
||||
|
@ -1,8 +1,6 @@
|
||||
#ifndef __SERIAL_H
|
||||
#define __SERIAL_H
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
typedef int BOOL;
|
||||
|
||||
#ifndef TRUE
|
||||
|
@ -1,7 +1,6 @@
|
||||
#ifndef _EMU2413_H_
|
||||
#define _EMU2413_H_
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <math.h>
|
||||
|
@ -20,7 +20,6 @@
|
||||
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include <string/stdstring.h>
|
||||
#include <file/file_path.h>
|
||||
|
@ -18,9 +18,9 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include <ctype.h>
|
||||
|
||||
#include "fceu-types.h"
|
||||
|
@ -18,7 +18,6 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
|
@ -1,7 +1,6 @@
|
||||
#ifndef _FCEU_DRIVER_H
|
||||
#define _FCEU_DRIVER_H
|
||||
|
||||
#include <stdio.h>
|
||||
#include <libretro.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
@ -1,3 +1,4 @@
|
||||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
@ -21,7 +21,6 @@
|
||||
/* Contains file I/O functions that write/read data */
|
||||
/* LSB first. */
|
||||
|
||||
#include <stdio.h>
|
||||
#include "fceu-memory.h"
|
||||
#include "fceu-types.h"
|
||||
#include "fceu-endian.h"
|
||||
|
@ -18,8 +18,8 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
|
@ -18,7 +18,6 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#ifdef _WIN32
|
||||
|
@ -1,5 +1,4 @@
|
||||
#include <math.h>
|
||||
#include <stdio.h>
|
||||
#include "fceu-types.h"
|
||||
|
||||
#include "sound.h"
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
#define MAX 512
|
||||
|
||||
main()
|
||||
void main(void)
|
||||
{
|
||||
char buf[256];
|
||||
int count=0;
|
||||
|
@ -18,7 +18,6 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdarg.h>
|
||||
|
@ -1,5 +1,3 @@
|
||||
#include <stdio.h>
|
||||
|
||||
#include "fceu-types.h"
|
||||
#include "fceu.h"
|
||||
|
||||
|
@ -18,7 +18,6 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <math.h>
|
||||
|
||||
|
@ -60,15 +60,11 @@ static uint8 rp2c05004_colortable[] =
|
||||
};
|
||||
|
||||
|
||||
main() {
|
||||
void main(void)
|
||||
{
|
||||
int x;
|
||||
for (x = 0; x < 64; x++) {
|
||||
#if 0
|
||||
if(x <= 0x20)
|
||||
if(rp2c04002_colortable[x] == 0xFF) rp2c04002_colortable[x]= 0x30;
|
||||
#endif
|
||||
for (x = 0; x < 64; x++)
|
||||
printf("{0x%02x, 0x%02x, 0x%02x},\n", palette[rp2c04001_colortable[x] & 0x3F].r,
|
||||
palette[rp2c04001_colortable[x] & 0x3F].g,
|
||||
palette[rp2c04001_colortable[x] & 0x3F].b);
|
||||
}
|
||||
palette[rp2c04001_colortable[x] & 0x3F].g,
|
||||
palette[rp2c04001_colortable[x] & 0x3F].b);
|
||||
}
|
||||
|
@ -20,7 +20,6 @@
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "fceu-types.h"
|
||||
|
@ -19,7 +19,6 @@
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include <string.h>
|
||||
|
||||
|
@ -18,8 +18,8 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
|
@ -19,7 +19,6 @@
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include "fceu-types.h"
|
||||
#include "x6502.h"
|
||||
|
Loading…
x
Reference in New Issue
Block a user