From b73423b87f5b2be34854732f13e766c2a3d2eb10 Mon Sep 17 00:00:00 2001 From: Julien Palard Date: Fri, 23 Sep 2011 21:57:01 +0200 Subject: [PATCH] Simplification of includes --- test.c | 1 - vt100_headless.c | 1 - vt100_headless.h | 2 ++ 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test.c b/test.c index c340b16..d11fd69 100644 --- a/test.c +++ b/test.c @@ -5,7 +5,6 @@ #include #include #include "vt100_headless.h" -#include "terminal_vt100.h" void disp(struct vt100_headless *vt100) { diff --git a/vt100_headless.c b/vt100_headless.c index d0b61fb..0abc948 100644 --- a/vt100_headless.c +++ b/vt100_headless.c @@ -7,7 +7,6 @@ #include #include #include "vt100_headless.h" -#include "terminal_vt100.h" struct vt100_headless *vt100_headless_init(void) { diff --git a/vt100_headless.h b/vt100_headless.h index 5196a6a..a1fb223 100644 --- a/vt100_headless.h +++ b/vt100_headless.h @@ -3,6 +3,8 @@ #define CHILD 0 +#include "terminal_vt100.h" + struct vt100_headless { int master;