remove fileio from efunc, update dependencies.

This commit is contained in:
Renaud 2013-05-18 11:42:16 +08:00
parent a65f7ca38c
commit fa56e5dfff
5 changed files with 6 additions and 6 deletions

View File

@ -132,13 +132,13 @@ depend: ${SRC}
ansi.o: ansi.c estruct.h edef.h
basic.o: basic.c estruct.h edef.h
bind.o: bind.c estruct.h edef.h
bind.o: bind.c estruct.h edef.h fileio.h
buffer.o: buffer.c estruct.h edef.h
crypt.o: crypt.c estruct.h edef.h
display.o: display.c estruct.h edef.h utf8.h version.h
eval.o: eval.c estruct.h edef.h version.h
eval.o: eval.c estruct.h edef.h version.h fileio.h
exec.o: exec.c estruct.h edef.h
file.o: file.c estruct.h edef.h
file.o: file.c estruct.h edef.h fileio.h
fileio.o: fileio.c fileio.h estruct.h edef.h
ibmpc.o: ibmpc.c estruct.h edef.h
input.o: input.c estruct.h edef.h

1
bind.c
View File

@ -12,6 +12,7 @@
#include "estruct.h"
#include "edef.h"
#include "efunc.h"
#include "fileio.h"
#include "line.h"

View File

@ -220,9 +220,6 @@ extern int writeout(char *fn);
extern int filename(int f, int n);
extern int ifile(char *fname);
/* fileio.c */
#include "fileio.h"
/* exec.c */
extern int namedcmd(int f, int n);
extern int execcmd(int f, int n);

1
eval.c
View File

@ -11,6 +11,7 @@
#include "estruct.h"
#include "edef.h"
#include "efunc.h"
#include "fileio.h"
#include "line.h"
#include "version.h"

1
file.c
View File

@ -13,6 +13,7 @@
#include "estruct.h"
#include "edef.h"
#include "efunc.h"
#include "fileio.h"
#include "line.h"
#if defined(PKCODE)