Cut down on stdio.h usage

This commit is contained in:
twinaphex 2020-10-03 21:51:35 +02:00
parent 07bc4eecf7
commit 42894b5d63
6 changed files with 3 additions and 9 deletions

View File

@ -39,7 +39,6 @@
#include <assert.h>
#include <stdint.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>

View File

@ -36,10 +36,9 @@
int pgxpMode = PGXP_GetModes();
#ifdef HAVE_LIGHTREC
#include <lightrec.h>
#include <stdio.h>
#include <unistd.h>
#include <signal.h>
#include <lightrec.h>
#include <unistd.h>
#include <signal.h>
enum DYNAREC prev_dynarec;
bool prev_invalidate;

View File

@ -1,5 +1,4 @@
#include "rsx_dump.h"
#include <stdio.h>
static FILE *file;

View File

@ -2,7 +2,6 @@
#include <math.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

View File

@ -1,6 +1,5 @@
#include "rsx_lib_gl.h"
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <stdlib.h> /* exit() */

View File

@ -1,7 +1,6 @@
#include "rsx/rsx_lib_vulkan.h"
#include <stdint.h>
#include <stdio.h>
#include <functional>
#include <vector>