summaryrefslogtreecommitdiffstats
path: root/src/vt100.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vt100.h')
-rw-r--r--src/vt100.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/vt100.h b/src/vt100.h
new file mode 100644
index 0000000..12bbb7c
--- /dev/null
+++ b/src/vt100.h
@@ -0,0 +1,12 @@
+#ifndef _VT100_H
+#define _VT100_H
+
+struct vt100_screen;
+
+typedef struct vt100_screen VT100Screen;
+
+#include "screen.h"
+
+#define UNUSED(x) ((void)x)
+
+#endif