summaryrefslogtreecommitdiffstats
path: root/src/vt100.h
blob: 12bbb7cc8ed2a84d862c02003290743077668238 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _VT100_H
#define _VT100_H

struct vt100_screen;

typedef struct vt100_screen VT100Screen;

#include "screen.h"

#define UNUSED(x) ((void)x)

#endif