aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2016-05-12 16:23:54 -0400
committerJesse Luehrs <doy@tozt.net>2016-05-12 16:30:56 -0400
commitbe27ed272a66d1b724a56681e32eeee24d50651c (patch)
tree73250d1772a709d690b0db6b273c552df507fc70
parentb13faffc10615e34070051ca9f6edf574d536a7d (diff)
downloadrunes-be27ed272a66d1b724a56681e32eeee24d50651c.tar.gz
runes-be27ed272a66d1b724a56681e32eeee24d50651c.zip
don't redefine typedefs
clang doesn't like it because apparently it wasn't a thing until c11
-rw-r--r--src/term.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/term.h b/src/term.h
index 6c84646..32b06dd 100644
--- a/src/term.h
+++ b/src/term.h
@@ -1,8 +1,7 @@
#ifndef _RUNES_TERM_H
#define _RUNES_TERM_H
-struct vt100_screen;
-typedef struct vt100_screen VT100Screen;
+#include <vt100.h>
struct runes_term {
RunesConfig *config;