mirror of
https://github.com/simh/simh.git
synced 2026-02-02 14:52:18 +00:00
9 lines
172 B
C
9 lines
172 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 */
|