From b971f265fc42e942371e392528d9610f63ae9e53 Mon Sep 17 00:00:00 2001 From: Renaud Fivet Date: Tue, 28 May 2013 13:04:39 +0800 Subject: [PATCH] Remove bind from efunc. --- ebind.h | 1 + efunc.h | 3 --- eval.c | 1 + exec.c | 1 + input.c | 1 + names.c | 1 + 6 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ebind.h b/ebind.h index 4ee5fa9..5014e42 100644 --- a/ebind.h +++ b/ebind.h @@ -8,6 +8,7 @@ #ifndef EBIND_H_ #define EBIND_H_ +#include "bind.h" #include "crypt.h" #include "exec.h" #include "file.h" diff --git a/efunc.h b/efunc.h index 7d6ba93..d9fe775 100644 --- a/efunc.h +++ b/efunc.h @@ -29,9 +29,6 @@ /* input.c */ #include "input.h" -/* bind.c */ -#include "bind.h" - /* buffer.c */ #include "buffer.h" diff --git a/eval.c b/eval.c index d757a50..a36fbc4 100644 --- a/eval.c +++ b/eval.c @@ -10,6 +10,7 @@ #include +#include "bind.h" #include "estruct.h" #include "edef.h" #include "efunc.h" diff --git a/exec.c b/exec.c index b612e82..460ccf2 100644 --- a/exec.c +++ b/exec.c @@ -12,6 +12,7 @@ #include +#include "bind.h" #include "estruct.h" #include "edef.h" #include "efunc.h" diff --git a/input.c b/input.c index b3f6a19..f35ac3b 100644 --- a/input.c +++ b/input.c @@ -13,6 +13,7 @@ #include #include +#include "bind.h" #include "estruct.h" #include "edef.h" #include "efunc.h" diff --git a/names.c b/names.c index 94aab57..71db22c 100644 --- a/names.c +++ b/names.c @@ -5,6 +5,7 @@ * function. */ +#include "bind.h" #include "exec.h" #include "crypt.h" #include "estruct.h"