From a61307aa59cb70c7432f2786caf7cb6165102711 Mon Sep 17 00:00:00 2001 From: Renaud Fivet Date: Tue, 28 May 2013 13:25:14 +0800 Subject: [PATCH] Remove buffer from efunc. --- bind.c | 1 + ebind.h | 1 + efunc.h | 3 --- eval.c | 1 + exec.c | 1 + file.c | 1 + names.c | 1 + spawn.c | 1 + 8 files changed, 7 insertions(+), 3 deletions(-) diff --git a/bind.c b/bind.c index 289b404..0755d6f 100644 --- a/bind.c +++ b/bind.c @@ -12,6 +12,7 @@ #include +#include "buffer.h" #include "estruct.h" #include "edef.h" #include "efunc.h" diff --git a/ebind.h b/ebind.h index 3b17491..8b5d02a 100644 --- a/ebind.h +++ b/ebind.h @@ -9,6 +9,7 @@ #define EBIND_H_ #include "bind.h" +#include "buffer.h" #include "crypt.h" #include "exec.h" #include "file.h" diff --git a/efunc.h b/efunc.h index a95753a..1247fa5 100644 --- a/efunc.h +++ b/efunc.h @@ -26,9 +26,6 @@ /* input.c */ #include "input.h" -/* buffer.c */ -#include "buffer.h" - /* eval.c */ #include "eval.h" diff --git a/eval.c b/eval.c index a36fbc4..4724f1d 100644 --- a/eval.c +++ b/eval.c @@ -10,6 +10,7 @@ #include +#include "buffer.h" #include "bind.h" #include "estruct.h" #include "edef.h" diff --git a/exec.c b/exec.c index 460ccf2..e9cf890 100644 --- a/exec.c +++ b/exec.c @@ -12,6 +12,7 @@ #include +#include "buffer.h" #include "bind.h" #include "estruct.h" #include "edef.h" diff --git a/file.c b/file.c index 463ab58..a7fa9c0 100644 --- a/file.c +++ b/file.c @@ -14,6 +14,7 @@ #include #include +#include "buffer.h" #include "crypt.h" #include "display.h" #include "estruct.h" diff --git a/names.c b/names.c index 769d02f..45b3c54 100644 --- a/names.c +++ b/names.c @@ -5,6 +5,7 @@ * function. */ +#include "buffer.h" #include "bind.h" #include "exec.h" #include "crypt.h" diff --git a/spawn.c b/spawn.c index 4bc53fd..20ba51b 100644 --- a/spawn.c +++ b/spawn.c @@ -11,6 +11,7 @@ #include #include +#include "buffer.h" #include "estruct.h" #include "edef.h" #include "efunc.h"