1
0
mirror of https://github.com/simh/simh.git synced 2026-01-26 04:01:38 +00:00

slirp: Adjust code so it will build cleanly both in simh and QEMU

This commit is contained in:
Mark Pizzolato
2015-10-16 15:06:17 -07:00
parent b7f26877ab
commit dabdcfd2bd
3 changed files with 21 additions and 21 deletions

View File

@@ -44,12 +44,12 @@ extern void _sim_debug (int dbits, DEVICE* dptr, const char* fmt, ...);
#else
#define DEBUG_CALL(x)
#define DEBUG_ARG(x, y)
#define DEBUG_ARGS(...)
#define DEBUG_MISC(...)
#define DEBUG_ERROR(...)
#define DPRINTF(fmt, ...)
#define DEBUG_CALL(x) do {} while (0)
#define DEBUG_ARG(x, y) do {} while (0)
#define DEBUG_ARGS(...) do {} while (0)
#define DEBUG_MISC(...) do {} while (0)
#define DEBUG_ERROR(...) do {} while (0)
#define DPRINTF(fmt, ...) do {} while (0)
#endif
#endif