summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/psx/sio.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2022-10-25 12:15:14 -0400
committer AJR <ajrhacker@users.noreply.github.com>2022-10-25 12:16:07 -0400
commite178fbd28127c526b212e5a4998058cebf530567 (patch)
tree90acdb09f6718d222a342889baaf3123a0962624 /src/devices/cpu/psx/sio.cpp
parentedaa86db8877e8e4fbf0066bd48abc32d68eb00d (diff)
Remove #include <cstdarg> from emu.h and move it into source files that still require it
Diffstat (limited to 'src/devices/cpu/psx/sio.cpp')
-rw-r--r--src/devices/cpu/psx/sio.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/devices/cpu/psx/sio.cpp b/src/devices/cpu/psx/sio.cpp
index 0f6b2c39001..46b73d6b3a9 100644
--- a/src/devices/cpu/psx/sio.cpp
+++ b/src/devices/cpu/psx/sio.cpp
@@ -10,6 +10,8 @@
#include "emu.h"
#include "sio.h"
+#include <cstdarg>
+
#define VERBOSE_LEVEL ( 0 )
static inline void ATTR_PRINTF(3,4) verboselog( device_t& device, int n_level, const char *s_fmt, ... )