mirror of
https://github.com/simh/simh.git
synced 2026-01-22 18:41:35 +00:00
Minimize the include file set and their contents to only provide the slirp referenced qemu includes and interfaces.
9 lines
164 B
C
9 lines
164 B
C
#ifndef MONITOR_H
|
|
#define MONITOR_H
|
|
|
|
#include "qemu-common.h"
|
|
|
|
void monitor_printf(Monitor *mon, const char *fmt, ...) GCC_FMT_ATTR(2, 3);
|
|
|
|
#endif /* !MONITOR_H */
|