Remove buffer from efunc.

This commit is contained in:
Renaud 2013-05-28 13:25:14 +08:00
parent 7816f96508
commit a61307aa59
8 changed files with 7 additions and 3 deletions

1
bind.c
View File

@ -12,6 +12,7 @@
#include <stdio.h>
#include "buffer.h"
#include "estruct.h"
#include "edef.h"
#include "efunc.h"

View File

@ -9,6 +9,7 @@
#define EBIND_H_
#include "bind.h"
#include "buffer.h"
#include "crypt.h"
#include "exec.h"
#include "file.h"

View File

@ -26,9 +26,6 @@
/* input.c */
#include "input.h"
/* buffer.c */
#include "buffer.h"
/* eval.c */
#include "eval.h"

1
eval.c
View File

@ -10,6 +10,7 @@
#include <stdio.h>
#include "buffer.h"
#include "bind.h"
#include "estruct.h"
#include "edef.h"

1
exec.c
View File

@ -12,6 +12,7 @@
#include <stdio.h>
#include "buffer.h"
#include "bind.h"
#include "estruct.h"
#include "edef.h"

1
file.c
View File

@ -14,6 +14,7 @@
#include <stdio.h>
#include <unistd.h>
#include "buffer.h"
#include "crypt.h"
#include "display.h"
#include "estruct.h"

View File

@ -5,6 +5,7 @@
* function.
*/
#include "buffer.h"
#include "bind.h"
#include "exec.h"
#include "crypt.h"

View File

@ -11,6 +11,7 @@
#include <stdio.h>
#include <unistd.h>
#include "buffer.h"
#include "estruct.h"
#include "edef.h"
#include "efunc.h"