Simplification of includes

This commit is contained in:
Julien Palard 2011-09-23 21:57:01 +02:00
parent e8b2632b37
commit b73423b87f
3 changed files with 2 additions and 2 deletions

1
test.c
View File

@ -5,7 +5,6 @@
#include <pty.h>
#include <stdio.h>
#include "vt100_headless.h"
#include "terminal_vt100.h"
void disp(struct vt100_headless *vt100)
{

View File

@ -7,7 +7,6 @@
#include <pty.h>
#include <stdlib.h>
#include "vt100_headless.h"
#include "terminal_vt100.h"
struct vt100_headless *vt100_headless_init(void)
{

View File

@ -3,6 +3,8 @@
#define CHILD 0
#include "terminal_vt100.h"
struct vt100_headless
{
int master;