mirror of
https://github.com/open-simh/simh.git
synced 2026-05-03 14:49:02 +00:00
Project standard source code has tabs converted to spaces and CRLF line endings. Other text files have CRLF line endings.
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 */
|